@esri/calcite-design-tokens 3.0.2-next.8 → 3.1.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/core.css +17 -15
- package/dist/css/dark.css +13 -11
- package/dist/css/index.css +59 -49
- package/dist/css/light.css +11 -9
- package/dist/docs/core.json +68 -16
- package/dist/docs/dark.json +68 -12
- package/dist/docs/global.json +70 -14
- package/dist/docs/light.json +66 -10
- package/dist/docs/semantic.json +1 -1
- package/dist/es6/core.d.ts +2 -0
- package/dist/es6/core.js +17 -15
- package/dist/es6/dark.d.ts +2 -0
- package/dist/es6/dark.js +13 -11
- package/dist/es6/global.d.ts +8 -0
- package/dist/es6/global.js +21 -13
- package/dist/es6/light.d.ts +2 -0
- package/dist/es6/light.js +11 -9
- package/dist/js/core.d.ts +2 -0
- package/dist/js/core.js +96 -30
- package/dist/js/dark.d.ts +2 -0
- package/dist/js/dark.js +85 -13
- package/dist/js/global.d.ts +4 -0
- package/dist/js/global.js +98 -20
- package/dist/js/light.d.ts +2 -0
- package/dist/js/light.js +81 -9
- package/dist/scss/core.scss +17 -15
- package/dist/scss/dark.scss +13 -11
- package/dist/scss/index.scss +24 -20
- package/dist/scss/light.scss +11 -9
- package/package.json +2 -2
package/dist/docs/dark.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1745007320254,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
|
-
"value": "#
|
|
5
|
+
"value": "#363636",
|
|
6
6
|
"type": "color",
|
|
7
7
|
"attributes": {
|
|
8
8
|
"category": "color",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"key": "{semantic.color.foreground.1}"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"value": "#
|
|
86
|
+
"value": "#212121",
|
|
87
87
|
"type": "color",
|
|
88
88
|
"attributes": {
|
|
89
89
|
"category": "color",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"key": "{semantic.color.foreground.2}"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
|
-
"value": "#
|
|
113
|
+
"value": "#141414",
|
|
114
114
|
"type": "color",
|
|
115
115
|
"attributes": {
|
|
116
116
|
"category": "color",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"key": "{semantic.color.transparent.default.default}"
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
|
-
"value": "rgba(255, 255, 255, 0.
|
|
195
|
+
"value": "rgba(255, 255, 255, 0.12)",
|
|
196
196
|
"type": "color",
|
|
197
197
|
"attributes": {
|
|
198
198
|
"category": "color",
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"key": "{semantic.color.transparent.default.hover}"
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
|
-
"value": "rgba(255, 255, 255, 0.
|
|
223
|
+
"value": "rgba(255, 255, 255, 0.16)",
|
|
224
224
|
"type": "color",
|
|
225
225
|
"attributes": {
|
|
226
226
|
"category": "color",
|
|
@@ -247,6 +247,62 @@
|
|
|
247
247
|
"path": ["semantic", "color", "transparent", "default", "press"],
|
|
248
248
|
"key": "{semantic.color.transparent.default.press}"
|
|
249
249
|
},
|
|
250
|
+
{
|
|
251
|
+
"value": "rgba(0, 0, 0, 0.04)",
|
|
252
|
+
"type": "color",
|
|
253
|
+
"attributes": {
|
|
254
|
+
"category": "color",
|
|
255
|
+
"type": "color",
|
|
256
|
+
"item": "transparent",
|
|
257
|
+
"subitem": "inverse",
|
|
258
|
+
"state": "hover",
|
|
259
|
+
"names": {
|
|
260
|
+
"scss": "$calcite-color-transparent-inverse-hover",
|
|
261
|
+
"css": "var(--calcite-color-transparent-inverse-hover)",
|
|
262
|
+
"js": "semantic.color.transparent.inverse.hover",
|
|
263
|
+
"docs": "semantic.color.transparent.inverse.hover",
|
|
264
|
+
"es6": "calciteColorTransparentInverseHover"
|
|
265
|
+
},
|
|
266
|
+
"calcite-schema": {
|
|
267
|
+
"system": "calcite",
|
|
268
|
+
"tier": "color",
|
|
269
|
+
"type": "color"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"filePath": "src/tokens/semantic/color/dark.json",
|
|
273
|
+
"isSource": true,
|
|
274
|
+
"name": "Color Transparent Inverse Hover",
|
|
275
|
+
"path": ["semantic", "color", "transparent", "inverse", "hover"],
|
|
276
|
+
"key": "{semantic.color.transparent.inverse.hover}"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"value": "rgba(0, 0, 0, 0.08)",
|
|
280
|
+
"type": "color",
|
|
281
|
+
"attributes": {
|
|
282
|
+
"category": "color",
|
|
283
|
+
"type": "color",
|
|
284
|
+
"item": "transparent",
|
|
285
|
+
"subitem": "inverse",
|
|
286
|
+
"state": "press",
|
|
287
|
+
"names": {
|
|
288
|
+
"scss": "$calcite-color-transparent-inverse-press",
|
|
289
|
+
"css": "var(--calcite-color-transparent-inverse-press)",
|
|
290
|
+
"js": "semantic.color.transparent.inverse.press",
|
|
291
|
+
"docs": "semantic.color.transparent.inverse.press",
|
|
292
|
+
"es6": "calciteColorTransparentInversePress"
|
|
293
|
+
},
|
|
294
|
+
"calcite-schema": {
|
|
295
|
+
"system": "calcite",
|
|
296
|
+
"tier": "color",
|
|
297
|
+
"type": "color"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"filePath": "src/tokens/semantic/color/dark.json",
|
|
301
|
+
"isSource": true,
|
|
302
|
+
"name": "Color Transparent Inverse Press",
|
|
303
|
+
"path": ["semantic", "color", "transparent", "inverse", "press"],
|
|
304
|
+
"key": "{semantic.color.transparent.inverse.press}"
|
|
305
|
+
},
|
|
250
306
|
{
|
|
251
307
|
"value": "rgba(0, 0, 0, 0.85)",
|
|
252
308
|
"type": "color",
|
|
@@ -751,7 +807,7 @@
|
|
|
751
807
|
"key": "{semantic.color.status.danger.press}"
|
|
752
808
|
},
|
|
753
809
|
{
|
|
754
|
-
"value": "#
|
|
810
|
+
"value": "#f7f7f7",
|
|
755
811
|
"type": "color",
|
|
756
812
|
"attributes": {
|
|
757
813
|
"category": "color",
|
|
@@ -805,7 +861,7 @@
|
|
|
805
861
|
"key": "{semantic.color.inverse.hover}"
|
|
806
862
|
},
|
|
807
863
|
{
|
|
808
|
-
"value": "#
|
|
864
|
+
"value": "#f2f2f2",
|
|
809
865
|
"type": "color",
|
|
810
866
|
"attributes": {
|
|
811
867
|
"category": "color",
|
|
@@ -886,7 +942,7 @@
|
|
|
886
942
|
"key": "{semantic.color.text.2}"
|
|
887
943
|
},
|
|
888
944
|
{
|
|
889
|
-
"value": "#
|
|
945
|
+
"value": "#9e9e9e",
|
|
890
946
|
"type": "color",
|
|
891
947
|
"attributes": {
|
|
892
948
|
"category": "color",
|
|
@@ -913,7 +969,7 @@
|
|
|
913
969
|
"key": "{semantic.color.text.3}"
|
|
914
970
|
},
|
|
915
971
|
{
|
|
916
|
-
"value": "#
|
|
972
|
+
"value": "#141414",
|
|
917
973
|
"type": "color",
|
|
918
974
|
"attributes": {
|
|
919
975
|
"category": "color",
|
|
@@ -967,7 +1023,7 @@
|
|
|
967
1023
|
"key": "{semantic.color.text.link}"
|
|
968
1024
|
},
|
|
969
1025
|
{
|
|
970
|
-
"value": "#
|
|
1026
|
+
"value": "#545454",
|
|
971
1027
|
"type": "color",
|
|
972
1028
|
"attributes": {
|
|
973
1029
|
"category": "color",
|
|
@@ -1102,7 +1158,7 @@
|
|
|
1102
1158
|
"key": "{semantic.color.border.ghost}"
|
|
1103
1159
|
},
|
|
1104
1160
|
{
|
|
1105
|
-
"value": "#
|
|
1161
|
+
"value": "#f7f7f7",
|
|
1106
1162
|
"type": "color",
|
|
1107
1163
|
"attributes": {
|
|
1108
1164
|
"category": "color",
|
package/dist/docs/global.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1745007323287,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
|
-
"value": "{\"light\":\"#
|
|
5
|
+
"value": "{\"light\":\"#f7f7f7\",\"dark\":\"#363636\"}",
|
|
6
6
|
"type": "color",
|
|
7
7
|
"attributes": {
|
|
8
8
|
"category": "color",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"key": "{semantic.color.foreground.1}"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"value": "{\"light\":\"#
|
|
86
|
+
"value": "{\"light\":\"#f2f2f2\",\"dark\":\"#212121\"}",
|
|
87
87
|
"type": "color",
|
|
88
88
|
"attributes": {
|
|
89
89
|
"category": "color",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"key": "{semantic.color.foreground.2}"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
|
-
"value": "{\"light\":\"#
|
|
113
|
+
"value": "{\"light\":\"#ebebeb\",\"dark\":\"#141414\"}",
|
|
114
114
|
"type": "color",
|
|
115
115
|
"attributes": {
|
|
116
116
|
"category": "color",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"key": "{semantic.color.transparent.default.default}"
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
|
-
"value": "{\"light\":\"rgba(0, 0, 0, 0.04)\",\"dark\":\"rgba(255, 255, 255, 0.
|
|
195
|
+
"value": "{\"light\":\"rgba(0, 0, 0, 0.04)\",\"dark\":\"rgba(255, 255, 255, 0.12)\"}",
|
|
196
196
|
"type": "color",
|
|
197
197
|
"attributes": {
|
|
198
198
|
"category": "color",
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"key": "{semantic.color.transparent.default.hover}"
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
|
-
"value": "{\"light\":\"rgba(0, 0, 0, 0.08)\",\"dark\":\"rgba(255, 255, 255, 0.
|
|
223
|
+
"value": "{\"light\":\"rgba(0, 0, 0, 0.08)\",\"dark\":\"rgba(255, 255, 255, 0.16)\"}",
|
|
224
224
|
"type": "color",
|
|
225
225
|
"attributes": {
|
|
226
226
|
"category": "color",
|
|
@@ -247,6 +247,62 @@
|
|
|
247
247
|
"path": ["semantic", "color", "transparent", "default", "press"],
|
|
248
248
|
"key": "{semantic.color.transparent.default.press}"
|
|
249
249
|
},
|
|
250
|
+
{
|
|
251
|
+
"value": "{\"light\":\"rgba(255, 255, 255, 0.12)\",\"dark\":\"rgba(0, 0, 0, 0.04)\"}",
|
|
252
|
+
"type": "color",
|
|
253
|
+
"attributes": {
|
|
254
|
+
"category": "color",
|
|
255
|
+
"type": "color",
|
|
256
|
+
"item": "transparent",
|
|
257
|
+
"subitem": "inverse",
|
|
258
|
+
"state": "hover",
|
|
259
|
+
"names": {
|
|
260
|
+
"scss": "$calcite-color-transparent-inverse-hover",
|
|
261
|
+
"css": "var(--calcite-color-transparent-inverse-hover)",
|
|
262
|
+
"js": "semantic.color.transparent.inverse.hover",
|
|
263
|
+
"docs": "semantic.color.transparent.inverse.hover",
|
|
264
|
+
"es6": "calciteColorTransparentInverseHover"
|
|
265
|
+
},
|
|
266
|
+
"calcite-schema": {
|
|
267
|
+
"system": "calcite",
|
|
268
|
+
"tier": "color",
|
|
269
|
+
"type": "color"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
273
|
+
"isSource": false,
|
|
274
|
+
"name": "Color Transparent Inverse Hover",
|
|
275
|
+
"path": ["semantic", "color", "transparent", "inverse", "hover"],
|
|
276
|
+
"key": "{semantic.color.transparent.inverse.hover}"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"value": "{\"light\":\"rgba(255, 255, 255, 0.16)\",\"dark\":\"rgba(0, 0, 0, 0.08)\"}",
|
|
280
|
+
"type": "color",
|
|
281
|
+
"attributes": {
|
|
282
|
+
"category": "color",
|
|
283
|
+
"type": "color",
|
|
284
|
+
"item": "transparent",
|
|
285
|
+
"subitem": "inverse",
|
|
286
|
+
"state": "press",
|
|
287
|
+
"names": {
|
|
288
|
+
"scss": "$calcite-color-transparent-inverse-press",
|
|
289
|
+
"css": "var(--calcite-color-transparent-inverse-press)",
|
|
290
|
+
"js": "semantic.color.transparent.inverse.press",
|
|
291
|
+
"docs": "semantic.color.transparent.inverse.press",
|
|
292
|
+
"es6": "calciteColorTransparentInversePress"
|
|
293
|
+
},
|
|
294
|
+
"calcite-schema": {
|
|
295
|
+
"system": "calcite",
|
|
296
|
+
"tier": "color",
|
|
297
|
+
"type": "color"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
301
|
+
"isSource": false,
|
|
302
|
+
"name": "Color Transparent Inverse Press",
|
|
303
|
+
"path": ["semantic", "color", "transparent", "inverse", "press"],
|
|
304
|
+
"key": "{semantic.color.transparent.inverse.press}"
|
|
305
|
+
},
|
|
250
306
|
{
|
|
251
307
|
"value": "{\"light\":\"rgba(255, 255, 255, 0.85)\",\"dark\":\"rgba(0, 0, 0, 0.85)\"}",
|
|
252
308
|
"type": "color",
|
|
@@ -749,7 +805,7 @@
|
|
|
749
805
|
"key": "{semantic.color.status.danger.press}"
|
|
750
806
|
},
|
|
751
807
|
{
|
|
752
|
-
"value": "{\"light\":\"#
|
|
808
|
+
"value": "{\"light\":\"#363636\",\"dark\":\"#f7f7f7\"}",
|
|
753
809
|
"type": "color",
|
|
754
810
|
"attributes": {
|
|
755
811
|
"category": "color",
|
|
@@ -803,7 +859,7 @@
|
|
|
803
859
|
"key": "{semantic.color.inverse.hover}"
|
|
804
860
|
},
|
|
805
861
|
{
|
|
806
|
-
"value": "{\"light\":\"#
|
|
862
|
+
"value": "{\"light\":\"#212121\",\"dark\":\"#f2f2f2\"}",
|
|
807
863
|
"type": "color",
|
|
808
864
|
"attributes": {
|
|
809
865
|
"category": "color",
|
|
@@ -830,7 +886,7 @@
|
|
|
830
886
|
"key": "{semantic.color.inverse.press}"
|
|
831
887
|
},
|
|
832
888
|
{
|
|
833
|
-
"value": "{\"light\":\"#
|
|
889
|
+
"value": "{\"light\":\"#141414\",\"dark\":\"#ffffff\"}",
|
|
834
890
|
"type": "color",
|
|
835
891
|
"attributes": {
|
|
836
892
|
"category": "color",
|
|
@@ -884,7 +940,7 @@
|
|
|
884
940
|
"key": "{semantic.color.text.2}"
|
|
885
941
|
},
|
|
886
942
|
{
|
|
887
|
-
"value": "{\"light\":\"#
|
|
943
|
+
"value": "{\"light\":\"#6b6b6b\",\"dark\":\"#9e9e9e\"}",
|
|
888
944
|
"type": "color",
|
|
889
945
|
"attributes": {
|
|
890
946
|
"category": "color",
|
|
@@ -911,7 +967,7 @@
|
|
|
911
967
|
"key": "{semantic.color.text.3}"
|
|
912
968
|
},
|
|
913
969
|
{
|
|
914
|
-
"value": "{\"light\":\"#ffffff\",\"dark\":\"#
|
|
970
|
+
"value": "{\"light\":\"#ffffff\",\"dark\":\"#141414\"}",
|
|
915
971
|
"type": "color",
|
|
916
972
|
"attributes": {
|
|
917
973
|
"category": "color",
|
|
@@ -965,7 +1021,7 @@
|
|
|
965
1021
|
"key": "{semantic.color.text.link}"
|
|
966
1022
|
},
|
|
967
1023
|
{
|
|
968
|
-
"value": "{\"light\":\"#
|
|
1024
|
+
"value": "{\"light\":\"#c9c9c9\",\"dark\":\"#545454\"}",
|
|
969
1025
|
"type": "color",
|
|
970
1026
|
"attributes": {
|
|
971
1027
|
"category": "color",
|
|
@@ -1019,7 +1075,7 @@
|
|
|
1019
1075
|
"key": "{semantic.color.border.2}"
|
|
1020
1076
|
},
|
|
1021
1077
|
{
|
|
1022
|
-
"value": "{\"light\":\"#
|
|
1078
|
+
"value": "{\"light\":\"#dedede\",\"dark\":\"#404040\"}",
|
|
1023
1079
|
"type": "color",
|
|
1024
1080
|
"attributes": {
|
|
1025
1081
|
"category": "color",
|
|
@@ -1100,7 +1156,7 @@
|
|
|
1100
1156
|
"key": "{semantic.color.border.ghost}"
|
|
1101
1157
|
},
|
|
1102
1158
|
{
|
|
1103
|
-
"value": "{\"light\":\"#ffffff\",\"dark\":\"#
|
|
1159
|
+
"value": "{\"light\":\"#ffffff\",\"dark\":\"#f7f7f7\"}",
|
|
1104
1160
|
"type": "color",
|
|
1105
1161
|
"attributes": {
|
|
1106
1162
|
"category": "color",
|
package/dist/docs/light.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp":
|
|
2
|
+
"timestamp": 1745007321412,
|
|
3
3
|
"tokens": [
|
|
4
4
|
{
|
|
5
|
-
"value": "#
|
|
5
|
+
"value": "#f7f7f7",
|
|
6
6
|
"type": "color",
|
|
7
7
|
"attributes": {
|
|
8
8
|
"category": "color",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"key": "{semantic.color.foreground.1}"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"value": "#
|
|
86
|
+
"value": "#f2f2f2",
|
|
87
87
|
"type": "color",
|
|
88
88
|
"attributes": {
|
|
89
89
|
"category": "color",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"key": "{semantic.color.foreground.2}"
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
|
-
"value": "#
|
|
113
|
+
"value": "#ebebeb",
|
|
114
114
|
"type": "color",
|
|
115
115
|
"attributes": {
|
|
116
116
|
"category": "color",
|
|
@@ -247,6 +247,62 @@
|
|
|
247
247
|
"path": ["semantic", "color", "transparent", "default", "press"],
|
|
248
248
|
"key": "{semantic.color.transparent.default.press}"
|
|
249
249
|
},
|
|
250
|
+
{
|
|
251
|
+
"value": "rgba(255, 255, 255, 0.12)",
|
|
252
|
+
"type": "color",
|
|
253
|
+
"attributes": {
|
|
254
|
+
"category": "color",
|
|
255
|
+
"type": "color",
|
|
256
|
+
"item": "transparent",
|
|
257
|
+
"subitem": "inverse",
|
|
258
|
+
"state": "hover",
|
|
259
|
+
"names": {
|
|
260
|
+
"scss": "$calcite-color-transparent-inverse-hover",
|
|
261
|
+
"css": "var(--calcite-color-transparent-inverse-hover)",
|
|
262
|
+
"js": "semantic.color.transparent.inverse.hover",
|
|
263
|
+
"docs": "semantic.color.transparent.inverse.hover",
|
|
264
|
+
"es6": "calciteColorTransparentInverseHover"
|
|
265
|
+
},
|
|
266
|
+
"calcite-schema": {
|
|
267
|
+
"system": "calcite",
|
|
268
|
+
"tier": "color",
|
|
269
|
+
"type": "color"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
273
|
+
"isSource": true,
|
|
274
|
+
"name": "Color Transparent Inverse Hover",
|
|
275
|
+
"path": ["semantic", "color", "transparent", "inverse", "hover"],
|
|
276
|
+
"key": "{semantic.color.transparent.inverse.hover}"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"value": "rgba(255, 255, 255, 0.16)",
|
|
280
|
+
"type": "color",
|
|
281
|
+
"attributes": {
|
|
282
|
+
"category": "color",
|
|
283
|
+
"type": "color",
|
|
284
|
+
"item": "transparent",
|
|
285
|
+
"subitem": "inverse",
|
|
286
|
+
"state": "press",
|
|
287
|
+
"names": {
|
|
288
|
+
"scss": "$calcite-color-transparent-inverse-press",
|
|
289
|
+
"css": "var(--calcite-color-transparent-inverse-press)",
|
|
290
|
+
"js": "semantic.color.transparent.inverse.press",
|
|
291
|
+
"docs": "semantic.color.transparent.inverse.press",
|
|
292
|
+
"es6": "calciteColorTransparentInversePress"
|
|
293
|
+
},
|
|
294
|
+
"calcite-schema": {
|
|
295
|
+
"system": "calcite",
|
|
296
|
+
"tier": "color",
|
|
297
|
+
"type": "color"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"filePath": "src/tokens/semantic/color/light.json",
|
|
301
|
+
"isSource": true,
|
|
302
|
+
"name": "Color Transparent Inverse Press",
|
|
303
|
+
"path": ["semantic", "color", "transparent", "inverse", "press"],
|
|
304
|
+
"key": "{semantic.color.transparent.inverse.press}"
|
|
305
|
+
},
|
|
250
306
|
{
|
|
251
307
|
"value": "rgba(255, 255, 255, 0.85)",
|
|
252
308
|
"type": "color",
|
|
@@ -749,7 +805,7 @@
|
|
|
749
805
|
"key": "{semantic.color.status.danger.press}"
|
|
750
806
|
},
|
|
751
807
|
{
|
|
752
|
-
"value": "#
|
|
808
|
+
"value": "#363636",
|
|
753
809
|
"type": "color",
|
|
754
810
|
"attributes": {
|
|
755
811
|
"category": "color",
|
|
@@ -803,7 +859,7 @@
|
|
|
803
859
|
"key": "{semantic.color.inverse.hover}"
|
|
804
860
|
},
|
|
805
861
|
{
|
|
806
|
-
"value": "#
|
|
862
|
+
"value": "#212121",
|
|
807
863
|
"type": "color",
|
|
808
864
|
"attributes": {
|
|
809
865
|
"category": "color",
|
|
@@ -830,7 +886,7 @@
|
|
|
830
886
|
"key": "{semantic.color.inverse.press}"
|
|
831
887
|
},
|
|
832
888
|
{
|
|
833
|
-
"value": "#
|
|
889
|
+
"value": "#141414",
|
|
834
890
|
"type": "color",
|
|
835
891
|
"attributes": {
|
|
836
892
|
"category": "color",
|
|
@@ -884,7 +940,7 @@
|
|
|
884
940
|
"key": "{semantic.color.text.2}"
|
|
885
941
|
},
|
|
886
942
|
{
|
|
887
|
-
"value": "#
|
|
943
|
+
"value": "#6b6b6b",
|
|
888
944
|
"type": "color",
|
|
889
945
|
"attributes": {
|
|
890
946
|
"category": "color",
|
|
@@ -965,7 +1021,7 @@
|
|
|
965
1021
|
"key": "{semantic.color.text.link}"
|
|
966
1022
|
},
|
|
967
1023
|
{
|
|
968
|
-
"value": "#
|
|
1024
|
+
"value": "#c9c9c9",
|
|
969
1025
|
"type": "color",
|
|
970
1026
|
"attributes": {
|
|
971
1027
|
"category": "color",
|
|
@@ -1019,7 +1075,7 @@
|
|
|
1019
1075
|
"key": "{semantic.color.border.2}"
|
|
1020
1076
|
},
|
|
1021
1077
|
{
|
|
1022
|
-
"value": "#
|
|
1078
|
+
"value": "#dedede",
|
|
1023
1079
|
"type": "color",
|
|
1024
1080
|
"attributes": {
|
|
1025
1081
|
"category": "color",
|
package/dist/docs/semantic.json
CHANGED
package/dist/es6/core.d.ts
CHANGED
|
@@ -510,6 +510,8 @@ export const calciteOpacity0: string;
|
|
|
510
510
|
export const calciteOpacity4: string;
|
|
511
511
|
export const calciteOpacity8: string;
|
|
512
512
|
export const calciteOpacity10: string;
|
|
513
|
+
export const calciteOpacity12: string;
|
|
514
|
+
export const calciteOpacity16: string;
|
|
513
515
|
export const calciteOpacity20: string;
|
|
514
516
|
export const calciteOpacity30: string;
|
|
515
517
|
export const calciteOpacity40: string;
|
package/dist/es6/core.js
CHANGED
|
@@ -4,31 +4,31 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const calciteColorNeutralBlk000 = "#ffffff";
|
|
7
|
-
export const calciteColorNeutralBlk005 = "#
|
|
8
|
-
export const calciteColorNeutralBlk010 = "#
|
|
9
|
-
export const calciteColorNeutralBlk020 = "#
|
|
10
|
-
export const calciteColorNeutralBlk030 = "#
|
|
7
|
+
export const calciteColorNeutralBlk005 = "#f7f7f7";
|
|
8
|
+
export const calciteColorNeutralBlk010 = "#f2f2f2";
|
|
9
|
+
export const calciteColorNeutralBlk020 = "#ebebeb";
|
|
10
|
+
export const calciteColorNeutralBlk030 = "#dedede";
|
|
11
11
|
export const calciteColorNeutralBlk040 = "#d4d4d4";
|
|
12
|
-
export const calciteColorNeutralBlk050 = "#
|
|
12
|
+
export const calciteColorNeutralBlk050 = "#c9c9c9";
|
|
13
13
|
export const calciteColorNeutralBlk060 = "#bfbfbf";
|
|
14
14
|
export const calciteColorNeutralBlk070 = "#b5b5b5";
|
|
15
|
-
export const calciteColorNeutralBlk080 = "#
|
|
16
|
-
export const calciteColorNeutralBlk090 = "#
|
|
15
|
+
export const calciteColorNeutralBlk080 = "#ababab";
|
|
16
|
+
export const calciteColorNeutralBlk090 = "#9e9e9e";
|
|
17
17
|
export const calciteColorNeutralBlk100 = "#949494";
|
|
18
18
|
export const calciteColorNeutralBlk110 = "#8a8a8a";
|
|
19
19
|
export const calciteColorNeutralBlk120 = "#808080";
|
|
20
20
|
export const calciteColorNeutralBlk130 = "#757575";
|
|
21
|
-
export const calciteColorNeutralBlk140 = "#
|
|
22
|
-
export const calciteColorNeutralBlk150 = "#
|
|
23
|
-
export const calciteColorNeutralBlk160 = "#
|
|
21
|
+
export const calciteColorNeutralBlk140 = "#6b6b6b";
|
|
22
|
+
export const calciteColorNeutralBlk150 = "#616161";
|
|
23
|
+
export const calciteColorNeutralBlk160 = "#545454";
|
|
24
24
|
export const calciteColorNeutralBlk170 = "#4a4a4a";
|
|
25
25
|
export const calciteColorNeutralBlk180 = "#404040";
|
|
26
|
-
export const calciteColorNeutralBlk190 = "#
|
|
26
|
+
export const calciteColorNeutralBlk190 = "#363636";
|
|
27
27
|
export const calciteColorNeutralBlk200 = "#2b2b2b";
|
|
28
|
-
export const calciteColorNeutralBlk210 = "#
|
|
29
|
-
export const calciteColorNeutralBlk220 = "#
|
|
30
|
-
export const calciteColorNeutralBlk230 = "#
|
|
31
|
-
export const calciteColorNeutralBlk235 = "#
|
|
28
|
+
export const calciteColorNeutralBlk210 = "#212121";
|
|
29
|
+
export const calciteColorNeutralBlk220 = "#141414";
|
|
30
|
+
export const calciteColorNeutralBlk230 = "#0a0a0a";
|
|
31
|
+
export const calciteColorNeutralBlk235 = "#050505";
|
|
32
32
|
export const calciteColorNeutralBlk240 = "#000000";
|
|
33
33
|
export const calciteColorLowSaturationBlueLBb010 = "#edf3f7";
|
|
34
34
|
export const calciteColorLowSaturationBlueLBb020 = "#d7e1e7";
|
|
@@ -510,6 +510,8 @@ export const calciteOpacity0 = "0";
|
|
|
510
510
|
export const calciteOpacity4 = "0.04";
|
|
511
511
|
export const calciteOpacity8 = "0.08";
|
|
512
512
|
export const calciteOpacity10 = "0.1";
|
|
513
|
+
export const calciteOpacity12 = "0.12";
|
|
514
|
+
export const calciteOpacity16 = "0.16";
|
|
513
515
|
export const calciteOpacity20 = "0.2";
|
|
514
516
|
export const calciteOpacity30 = "0.3";
|
|
515
517
|
export const calciteOpacity40 = "0.4";
|
package/dist/es6/dark.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export const calciteColorForegroundCurrent: string;
|
|
|
12
12
|
export const calciteColorTransparent: string;
|
|
13
13
|
export const calciteColorTransparentHover: string;
|
|
14
14
|
export const calciteColorTransparentPress: string;
|
|
15
|
+
export const calciteColorTransparentInverseHover: string;
|
|
16
|
+
export const calciteColorTransparentInversePress: string;
|
|
15
17
|
export const calciteColorTransparentScrim: string;
|
|
16
18
|
export const calciteColorTransparentTint: string;
|
|
17
19
|
export const calciteColorBrand: string;
|
package/dist/es6/dark.js
CHANGED
|
@@ -3,15 +3,17 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export const calciteColorBackground = "#
|
|
6
|
+
export const calciteColorBackground = "#363636";
|
|
7
7
|
export const calciteColorBackgroundNone = "rgba(255, 255, 255, 0)";
|
|
8
8
|
export const calciteColorForeground1 = "#2b2b2b";
|
|
9
|
-
export const calciteColorForeground2 = "#
|
|
10
|
-
export const calciteColorForeground3 = "#
|
|
9
|
+
export const calciteColorForeground2 = "#212121";
|
|
10
|
+
export const calciteColorForeground3 = "#141414";
|
|
11
11
|
export const calciteColorForegroundCurrent = "#214155";
|
|
12
12
|
export const calciteColorTransparent = "rgba(255, 255, 255, 0)";
|
|
13
|
-
export const calciteColorTransparentHover = "rgba(255, 255, 255, 0.
|
|
14
|
-
export const calciteColorTransparentPress = "rgba(255, 255, 255, 0.
|
|
13
|
+
export const calciteColorTransparentHover = "rgba(255, 255, 255, 0.12)";
|
|
14
|
+
export const calciteColorTransparentPress = "rgba(255, 255, 255, 0.16)";
|
|
15
|
+
export const calciteColorTransparentInverseHover = "rgba(0, 0, 0, 0.04)";
|
|
16
|
+
export const calciteColorTransparentInversePress = "rgba(0, 0, 0, 0.08)";
|
|
15
17
|
export const calciteColorTransparentScrim = "rgba(0, 0, 0, 0.85)";
|
|
16
18
|
export const calciteColorTransparentTint = "rgba(43, 43, 43, 0.8)";
|
|
17
19
|
export const calciteColorBrand = "#009af2";
|
|
@@ -30,17 +32,17 @@ export const calciteColorStatusWarningPress = "#f5d000";
|
|
|
30
32
|
export const calciteColorStatusDanger = "#fe583e";
|
|
31
33
|
export const calciteColorStatusDangerHover = "#ff0015";
|
|
32
34
|
export const calciteColorStatusDangerPress = "#d90012";
|
|
33
|
-
export const calciteColorInverse = "#
|
|
35
|
+
export const calciteColorInverse = "#f7f7f7";
|
|
34
36
|
export const calciteColorInverseHover = "#ffffff";
|
|
35
|
-
export const calciteColorInversePress = "#
|
|
37
|
+
export const calciteColorInversePress = "#f2f2f2";
|
|
36
38
|
export const calciteColorText1 = "#ffffff";
|
|
37
39
|
export const calciteColorText2 = "#bfbfbf";
|
|
38
|
-
export const calciteColorText3 = "#
|
|
39
|
-
export const calciteColorTextInverse = "#
|
|
40
|
+
export const calciteColorText3 = "#9e9e9e";
|
|
41
|
+
export const calciteColorTextInverse = "#141414";
|
|
40
42
|
export const calciteColorTextLink = "#00a0ff";
|
|
41
|
-
export const calciteColorBorder1 = "#
|
|
43
|
+
export const calciteColorBorder1 = "#545454";
|
|
42
44
|
export const calciteColorBorder2 = "#4a4a4a";
|
|
43
45
|
export const calciteColorBorder3 = "#404040";
|
|
44
46
|
export const calciteColorBorderInput = "#757575";
|
|
45
47
|
export const calciteColorBorderGhost = "rgba(117, 117, 117, 0.3)";
|
|
46
|
-
export const calciteColorBorderWhite = "#
|
|
48
|
+
export const calciteColorBorderWhite = "#f7f7f7";
|
package/dist/es6/global.d.ts
CHANGED
|
@@ -13,6 +13,14 @@ export const calciteColorForegroundCurrent: { light: string; dark: string };
|
|
|
13
13
|
export const calciteColorTransparent: { light: string; dark: string };
|
|
14
14
|
export const calciteColorTransparentHover: { light: string; dark: string };
|
|
15
15
|
export const calciteColorTransparentPress: { light: string; dark: string };
|
|
16
|
+
export const calciteColorTransparentInverseHover: {
|
|
17
|
+
light: string;
|
|
18
|
+
dark: string;
|
|
19
|
+
};
|
|
20
|
+
export const calciteColorTransparentInversePress: {
|
|
21
|
+
light: string;
|
|
22
|
+
dark: string;
|
|
23
|
+
};
|
|
16
24
|
export const calciteColorTransparentScrim: { light: string; dark: string };
|
|
17
25
|
export const calciteColorTransparentTint: { light: string; dark: string };
|
|
18
26
|
export const calciteColorBrand: { light: string; dark: string };
|