@esri/calcite-design-tokens 3.1.0-next.6 → 3.1.0-next.8
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/breakpoints.css +22 -22
- package/dist/css/core.css +19 -19
- package/dist/css/dark.css +1 -0
- package/dist/css/global.css +45 -45
- package/dist/css/index.css +5 -0
- package/dist/css/light.css +1 -0
- package/dist/css/semantic.css +67 -67
- package/dist/docs/core.json +1 -1
- package/dist/docs/dark.json +28 -1
- package/dist/docs/global.json +28 -1
- package/dist/docs/light.json +28 -1
- package/dist/docs/semantic.json +1 -1
- package/dist/es6/breakpoints.d.ts +22 -43
- package/dist/es6/core.d.ts +38 -19
- package/dist/es6/dark.d.ts +1 -0
- package/dist/es6/dark.js +1 -0
- package/dist/es6/global.d.ts +113 -88
- package/dist/es6/global.js +1 -0
- package/dist/es6/light.d.ts +1 -0
- package/dist/es6/light.js +1 -0
- package/dist/es6/semantic.d.ts +112 -88
- package/dist/js/dark.d.ts +1 -0
- package/dist/js/dark.js +34 -0
- package/dist/js/global.d.ts +1 -0
- package/dist/js/global.js +38 -1
- package/dist/js/light.d.ts +1 -0
- package/dist/js/light.js +34 -0
- package/dist/js/semantic.js +1 -1
- package/dist/scss/dark.scss +1 -0
- package/dist/scss/global.scss +1 -1
- package/dist/scss/index.scss +2 -0
- package/dist/scss/light.scss +1 -0
- package/dist/scss/semantic.scss +1 -1
- package/package.json +2 -2
|
@@ -4,47 +4,26 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/** Small handheld devices and mini-windows */
|
|
7
|
-
export const calciteContainerSizeHeightXxs: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export const
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export const
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
export const
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
export const
|
|
28
|
-
|
|
29
|
-
}; /** Small handheld devices and mini-windows */
|
|
30
|
-
export const calciteContainerSizeWidthXxs: {
|
|
31
|
-
min: string;
|
|
32
|
-
max: string;
|
|
33
|
-
}; /** Handheld devices */
|
|
34
|
-
export const calciteContainerSizeWidthXs: {
|
|
35
|
-
min: string;
|
|
36
|
-
max: string;
|
|
37
|
-
}; /** Small tablets */
|
|
38
|
-
export const calciteContainerSizeWidthSm: {
|
|
39
|
-
min: string;
|
|
40
|
-
max: string;
|
|
41
|
-
}; /** Small laptops */
|
|
42
|
-
export const calciteContainerSizeWidthMd: {
|
|
43
|
-
min: string;
|
|
44
|
-
max: string;
|
|
45
|
-
}; /** Large laptops and desktop computers */
|
|
46
|
-
export const calciteContainerSizeWidthLg: {
|
|
47
|
-
min: string;
|
|
48
|
-
max: string;
|
|
49
|
-
}; /** Projectors and televisions */
|
|
7
|
+
export const calciteContainerSizeHeightXxs: { min: string; max: string };
|
|
8
|
+
/** Handheld devices */
|
|
9
|
+
export const calciteContainerSizeHeightXs: { min: string; max: string };
|
|
10
|
+
/** Small tablets */
|
|
11
|
+
export const calciteContainerSizeHeightSm: { min: string; max: string };
|
|
12
|
+
/** Small laptops */
|
|
13
|
+
export const calciteContainerSizeHeightMd: { min: string; max: string };
|
|
14
|
+
/** Large laptops and desktop computers */
|
|
15
|
+
export const calciteContainerSizeHeightLg: { min: string; max: string };
|
|
16
|
+
/** Projectors and televisions */
|
|
17
|
+
export const calciteContainerSizeHeightXl: { min: string };
|
|
18
|
+
/** Small handheld devices and mini-windows */
|
|
19
|
+
export const calciteContainerSizeWidthXxs: { min: string; max: string };
|
|
20
|
+
/** Handheld devices */
|
|
21
|
+
export const calciteContainerSizeWidthXs: { min: string; max: string };
|
|
22
|
+
/** Small tablets */
|
|
23
|
+
export const calciteContainerSizeWidthSm: { min: string; max: string };
|
|
24
|
+
/** Small laptops */
|
|
25
|
+
export const calciteContainerSizeWidthMd: { min: string; max: string };
|
|
26
|
+
/** Large laptops and desktop computers */
|
|
27
|
+
export const calciteContainerSizeWidthLg: { min: string; max: string };
|
|
28
|
+
/** Projectors and televisions */
|
|
50
29
|
export const calciteContainerSizeWidthXl: { min: string };
|
package/dist/es6/core.d.ts
CHANGED
|
@@ -476,35 +476,54 @@ export const calciteContainerSize678: string;
|
|
|
476
476
|
export const calciteContainerSize768: string;
|
|
477
477
|
export const calciteContainerSize854: string;
|
|
478
478
|
export const calciteContainerSize1152: string;
|
|
479
|
-
export const calciteContainerSize1440: string;
|
|
479
|
+
export const calciteContainerSize1440: string;
|
|
480
|
+
/** Fallback for Monaco */
|
|
480
481
|
export const calciteFontFamilyAndaleMono: string;
|
|
481
482
|
export const calciteFontFamilyAvenirNextPro: string;
|
|
482
|
-
export const calciteFontFamilyAvenirNextWorld: string;
|
|
483
|
-
|
|
484
|
-
export const
|
|
485
|
-
|
|
486
|
-
export const
|
|
483
|
+
export const calciteFontFamilyAvenirNextWorld: string;
|
|
484
|
+
/** Primary font family */
|
|
485
|
+
export const calciteFontFamilyAvenirNext: string;
|
|
486
|
+
/** Fallback for Avenir Next */
|
|
487
|
+
export const calciteFontFamilyAvenir: string;
|
|
488
|
+
/** Fallback for Monaco */
|
|
489
|
+
export const calciteFontFamilyConsolas: string;
|
|
490
|
+
/** Fallback for Avenir Next */
|
|
491
|
+
export const calciteFontFamilyHelveticaNeue: string;
|
|
492
|
+
/** Fallback for Monaco */
|
|
487
493
|
export const calciteFontFamilyLucidaConsole: string;
|
|
488
|
-
export const calciteFontFamilyMonaco: string;
|
|
489
|
-
|
|
490
|
-
export const
|
|
491
|
-
|
|
494
|
+
export const calciteFontFamilyMonaco: string;
|
|
495
|
+
/** Fallback for Monaco */
|
|
496
|
+
export const calciteFontFamilyMonospace: string;
|
|
497
|
+
/** Fallback for Avenir Next */
|
|
498
|
+
export const calciteFontFamilySansSerif: string;
|
|
499
|
+
/** used in ratings */
|
|
500
|
+
export const calciteFontStyleItalic: string;
|
|
501
|
+
/** only for Avenir Next World (secondary font family) */
|
|
492
502
|
export const calciteFontWeightUltralight: string;
|
|
493
|
-
export const calciteFontWeightThin: string;
|
|
503
|
+
export const calciteFontWeightThin: string;
|
|
504
|
+
/** only for Avenir Next World (secondary font family) */
|
|
494
505
|
export const calciteFontWeightLight: string;
|
|
495
506
|
export const calciteFontWeightRegular: string;
|
|
496
507
|
export const calciteFontWeightMedium: string;
|
|
497
508
|
export const calciteFontWeightMediumItalic: string;
|
|
498
509
|
export const calciteFontWeightDemi: string;
|
|
499
|
-
export const calciteFontWeightBold: string;
|
|
500
|
-
|
|
510
|
+
export const calciteFontWeightBold: string;
|
|
511
|
+
/** only for Avenir Next World (secondary font family) */
|
|
512
|
+
export const calciteFontWeightExtrabold: string;
|
|
513
|
+
/** only for Avenir Next World (secondary font family) */
|
|
501
514
|
export const calciteFontWeightBlack: string;
|
|
502
|
-
export const calciteFontWeightHeavy: string;
|
|
503
|
-
|
|
504
|
-
export const
|
|
505
|
-
|
|
506
|
-
export const
|
|
507
|
-
|
|
515
|
+
export const calciteFontWeightHeavy: string;
|
|
516
|
+
/** Deprecated */
|
|
517
|
+
export const calciteFontTextDecorationNone: string;
|
|
518
|
+
/** Deprecated */
|
|
519
|
+
export const calciteFontTextDecorationUnderline: string;
|
|
520
|
+
/** Deprecated */
|
|
521
|
+
export const calciteFontTextCaseNone: string;
|
|
522
|
+
/** Deprecated */
|
|
523
|
+
export const calciteFontTextCaseUppercase: string;
|
|
524
|
+
/** Deprecated */
|
|
525
|
+
export const calciteFontTextCaseLowercase: string;
|
|
526
|
+
/** Deprecated */
|
|
508
527
|
export const calciteFontTextCaseCapitalize: string;
|
|
509
528
|
export const calciteOpacity0: string;
|
|
510
529
|
export const calciteOpacity4: string;
|
package/dist/es6/dark.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export const calciteColorInversePress: string;
|
|
|
38
38
|
export const calciteColorText1: string;
|
|
39
39
|
export const calciteColorText2: string;
|
|
40
40
|
export const calciteColorText3: string;
|
|
41
|
+
export const calciteColorTextHighlight: string;
|
|
41
42
|
export const calciteColorTextInverse: string;
|
|
42
43
|
export const calciteColorTextLink: string;
|
|
43
44
|
export const calciteColorBorder1: string;
|
package/dist/es6/dark.js
CHANGED
|
@@ -38,6 +38,7 @@ export const calciteColorInversePress = "#f2f2f2";
|
|
|
38
38
|
export const calciteColorText1 = "#ffffff";
|
|
39
39
|
export const calciteColorText2 = "#bfbfbf";
|
|
40
40
|
export const calciteColorText3 = "#9e9e9e";
|
|
41
|
+
export const calciteColorTextHighlight = "#c7eaff";
|
|
41
42
|
export const calciteColorTextInverse = "#141414";
|
|
42
43
|
export const calciteColorTextLink = "#00a0ff";
|
|
43
44
|
export const calciteColorBorder1 = "#545454";
|
package/dist/es6/global.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export const calciteColorInversePress: { light: string; dark: string };
|
|
|
45
45
|
export const calciteColorText1: { light: string; dark: string };
|
|
46
46
|
export const calciteColorText2: { light: string; dark: string };
|
|
47
47
|
export const calciteColorText3: { light: string; dark: string };
|
|
48
|
+
export const calciteColorTextHighlight: { light: string; dark: string };
|
|
48
49
|
export const calciteColorTextInverse: { light: string; dark: string };
|
|
49
50
|
export const calciteColorTextLink: { light: string; dark: string };
|
|
50
51
|
export const calciteColorBorder1: { light: string; dark: string };
|
|
@@ -56,65 +57,53 @@ export const calciteColorBorderWhite: { light: string; dark: string };
|
|
|
56
57
|
export const calciteBorderWidthNone: string;
|
|
57
58
|
export const calciteBorderWidthSm: string;
|
|
58
59
|
export const calciteBorderWidthMd: string;
|
|
59
|
-
export const calciteBorderWidthLg: string;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
export const calciteContainerSizeWidthXxs: {
|
|
84
|
-
min: string;
|
|
85
|
-
max: string;
|
|
86
|
-
}; /** Handheld devices */
|
|
87
|
-
export const calciteContainerSizeWidthXs: {
|
|
88
|
-
min: string;
|
|
89
|
-
max: string;
|
|
90
|
-
}; /** Small tablets */
|
|
91
|
-
export const calciteContainerSizeWidthSm: {
|
|
92
|
-
min: string;
|
|
93
|
-
max: string;
|
|
94
|
-
}; /** Small laptops */
|
|
95
|
-
export const calciteContainerSizeWidthMd: {
|
|
96
|
-
min: string;
|
|
97
|
-
max: string;
|
|
98
|
-
}; /** Large laptops and desktop computers */
|
|
99
|
-
export const calciteContainerSizeWidthLg: {
|
|
100
|
-
min: string;
|
|
101
|
-
max: string;
|
|
102
|
-
}; /** Projectors and televisions */
|
|
60
|
+
export const calciteBorderWidthLg: string;
|
|
61
|
+
/** Small handheld devices and mini-windows */
|
|
62
|
+
export const calciteContainerSizeHeightXxs: { min: string; max: string };
|
|
63
|
+
/** Handheld devices */
|
|
64
|
+
export const calciteContainerSizeHeightXs: { min: string; max: string };
|
|
65
|
+
/** Small tablets */
|
|
66
|
+
export const calciteContainerSizeHeightSm: { min: string; max: string };
|
|
67
|
+
/** Small laptops */
|
|
68
|
+
export const calciteContainerSizeHeightMd: { min: string; max: string };
|
|
69
|
+
/** Large laptops and desktop computers */
|
|
70
|
+
export const calciteContainerSizeHeightLg: { min: string; max: string };
|
|
71
|
+
/** Projectors and televisions */
|
|
72
|
+
export const calciteContainerSizeHeightXl: { min: string };
|
|
73
|
+
/** Small handheld devices and mini-windows */
|
|
74
|
+
export const calciteContainerSizeWidthXxs: { min: string; max: string };
|
|
75
|
+
/** Handheld devices */
|
|
76
|
+
export const calciteContainerSizeWidthXs: { min: string; max: string };
|
|
77
|
+
/** Small tablets */
|
|
78
|
+
export const calciteContainerSizeWidthSm: { min: string; max: string };
|
|
79
|
+
/** Small laptops */
|
|
80
|
+
export const calciteContainerSizeWidthMd: { min: string; max: string };
|
|
81
|
+
/** Large laptops and desktop computers */
|
|
82
|
+
export const calciteContainerSizeWidthLg: { min: string; max: string };
|
|
83
|
+
/** Projectors and televisions */
|
|
103
84
|
export const calciteContainerSizeWidthXl: { min: string };
|
|
104
85
|
export const calciteContainerSizeMargin: string;
|
|
105
|
-
export const calciteContainerSizeGutter: string;
|
|
106
|
-
|
|
86
|
+
export const calciteContainerSizeGutter: string;
|
|
87
|
+
/** for fluid grid widths */
|
|
88
|
+
export const calciteContainerSizeContentFluid: string;
|
|
89
|
+
/** only for lg breakpoint fixed grid width */
|
|
107
90
|
export const calciteContainerSizeContentFixed: string;
|
|
108
|
-
export const calciteCornerRadius: string;
|
|
91
|
+
export const calciteCornerRadius: string;
|
|
92
|
+
/** deprecated, use --calcite-conder-radius-none instead */
|
|
109
93
|
export const calciteCornerRadiusSharp: string;
|
|
110
94
|
export const calciteCornerRadiusNone: string;
|
|
111
95
|
export const calciteCornerRadiusXs: string;
|
|
112
|
-
export const calciteCornerRadiusSm: string;
|
|
96
|
+
export const calciteCornerRadiusSm: string;
|
|
97
|
+
/** deprecated, use --calcite-corner-radius-sm instead */
|
|
113
98
|
export const calciteCornerRadiusRound: string;
|
|
114
|
-
export const calciteCornerRadiusPill: string;
|
|
115
|
-
|
|
116
|
-
export const
|
|
117
|
-
|
|
99
|
+
export const calciteCornerRadiusPill: string;
|
|
100
|
+
/** Primary font with fallbacks */
|
|
101
|
+
export const calciteFontFamily: string[];
|
|
102
|
+
/** Font family for code with fallbacks */
|
|
103
|
+
export const calciteFontFamilyCode: string[];
|
|
104
|
+
/** For Avenir Next World (secondary font family) */
|
|
105
|
+
export const calciteFontWeightLight: string;
|
|
106
|
+
/** For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular" */
|
|
118
107
|
export const calciteFontWeightNormal: string;
|
|
119
108
|
export const calciteFontWeightRegular: string;
|
|
120
109
|
export const calciteFontWeightMedium: string;
|
|
@@ -126,27 +115,44 @@ export const calciteFontSize: string;
|
|
|
126
115
|
export const calciteFontSizeMd: string;
|
|
127
116
|
export const calciteFontSizeLg: string;
|
|
128
117
|
export const calciteFontSizeXl: string;
|
|
129
|
-
export const calciteFontSizeXxl: string;
|
|
118
|
+
export const calciteFontSizeXxl: string;
|
|
119
|
+
/** used in ratings */
|
|
130
120
|
export const calciteFontStyleEmphasis: string;
|
|
131
121
|
export const calciteFontLineHeightFixedSm: string;
|
|
132
122
|
export const calciteFontLineHeightFixedBase: string;
|
|
133
123
|
export const calciteFontLineHeightFixedLg: string;
|
|
134
|
-
export const calciteFontLineHeightFixedXl: string;
|
|
135
|
-
|
|
136
|
-
export const
|
|
137
|
-
|
|
138
|
-
export const
|
|
139
|
-
|
|
140
|
-
export const
|
|
141
|
-
|
|
142
|
-
export const
|
|
143
|
-
|
|
144
|
-
export const
|
|
145
|
-
|
|
146
|
-
export const
|
|
147
|
-
|
|
148
|
-
export const
|
|
149
|
-
|
|
124
|
+
export const calciteFontLineHeightFixedXl: string;
|
|
125
|
+
/** 1 */
|
|
126
|
+
export const calciteFontLineHeightRelative: string;
|
|
127
|
+
/** 1.25 */
|
|
128
|
+
export const calciteFontLineHeightRelativeTight: string;
|
|
129
|
+
/** 1.375 */
|
|
130
|
+
export const calciteFontLineHeightRelativeSnug: string;
|
|
131
|
+
/** 1.5 */
|
|
132
|
+
export const calciteFontLineHeightRelativeNormal: string;
|
|
133
|
+
/** 1.625 */
|
|
134
|
+
export const calciteFontLineHeightRelativeRelaxed: string;
|
|
135
|
+
/** 2 */
|
|
136
|
+
export const calciteFontLineHeightRelativeLoose: string;
|
|
137
|
+
/** Deprecated */
|
|
138
|
+
export const calciteFontLetterSpacingTight: string;
|
|
139
|
+
/** Deprecated */
|
|
140
|
+
export const calciteFontLetterSpacingNormal: string;
|
|
141
|
+
/** Deprecated */
|
|
142
|
+
export const calciteFontLetterSpacingWide: string;
|
|
143
|
+
/** Deprecated */
|
|
144
|
+
export const calciteFontParagraphSpacingNormal: string;
|
|
145
|
+
/** Deprecated */
|
|
146
|
+
export const calciteFontTextDecorationNone: string;
|
|
147
|
+
/** Deprecated */
|
|
148
|
+
export const calciteFontTextDecorationUnderline: string;
|
|
149
|
+
/** Deprecated */
|
|
150
|
+
export const calciteFontTextCaseNone: string;
|
|
151
|
+
/** Deprecated */
|
|
152
|
+
export const calciteFontTextCaseUppercase: string;
|
|
153
|
+
/** Deprecated */
|
|
154
|
+
export const calciteFontTextCaseLowercase: string;
|
|
155
|
+
/** Deprecated */
|
|
150
156
|
export const calciteFontTextCaseCapitalize: string;
|
|
151
157
|
export const calciteOpacityLight: string;
|
|
152
158
|
export const calciteOpacityHalf: string;
|
|
@@ -173,17 +179,28 @@ export const calciteShadowMd: {
|
|
|
173
179
|
color: string;
|
|
174
180
|
x: string;
|
|
175
181
|
y: string;
|
|
176
|
-
}[];
|
|
177
|
-
|
|
178
|
-
export const
|
|
179
|
-
|
|
180
|
-
export const
|
|
181
|
-
|
|
182
|
-
export const
|
|
183
|
-
|
|
184
|
-
export const
|
|
185
|
-
|
|
186
|
-
export const
|
|
182
|
+
}[];
|
|
183
|
+
/** deprecated */
|
|
184
|
+
export const calciteSizeFixedXxxs: string;
|
|
185
|
+
/** deprecated */
|
|
186
|
+
export const calciteSizeFixedXxs: string;
|
|
187
|
+
/** deprecated */
|
|
188
|
+
export const calciteSizeFixedXs: string;
|
|
189
|
+
/** deprecated */
|
|
190
|
+
export const calciteSizeFixedSm: string;
|
|
191
|
+
/** deprecated */
|
|
192
|
+
export const calciteSizeFixedSmPlus: string;
|
|
193
|
+
/** deprecated */
|
|
194
|
+
export const calciteSizeFixedMd: string;
|
|
195
|
+
/** deprecated */
|
|
196
|
+
export const calciteSizeFixedMdPlus: string;
|
|
197
|
+
/** deprecated */
|
|
198
|
+
export const calciteSizeFixedLg: string;
|
|
199
|
+
/** deprecated */
|
|
200
|
+
export const calciteSizeFixedXl: string;
|
|
201
|
+
/** deprecated */
|
|
202
|
+
export const calciteSizeFixedXxl: string;
|
|
203
|
+
/** deprecated */
|
|
187
204
|
export const calciteSizeFixedXxxl: string;
|
|
188
205
|
export const calciteSizePx: string;
|
|
189
206
|
export const calciteSizeXxxs: string;
|
|
@@ -194,14 +211,22 @@ export const calciteSizeMd: string;
|
|
|
194
211
|
export const calciteSizeLg: string;
|
|
195
212
|
export const calciteSizeXl: string;
|
|
196
213
|
export const calciteSizeXxl: string;
|
|
197
|
-
export const calciteSizeXxxl: string;
|
|
198
|
-
|
|
199
|
-
export const
|
|
200
|
-
|
|
201
|
-
export const
|
|
202
|
-
|
|
203
|
-
export const
|
|
204
|
-
|
|
214
|
+
export const calciteSizeXxxl: string;
|
|
215
|
+
/** deprecated */
|
|
216
|
+
export const calciteSpacingFixedXxs: string;
|
|
217
|
+
/** deprecated */
|
|
218
|
+
export const calciteSpacingFixedXs: string;
|
|
219
|
+
/** deprecated */
|
|
220
|
+
export const calciteSpacingFixedSm: string;
|
|
221
|
+
/** deprecated */
|
|
222
|
+
export const calciteSpacingFixedMd: string;
|
|
223
|
+
/** deprecated */
|
|
224
|
+
export const calciteSpacingFixedLg: string;
|
|
225
|
+
/** deprecated */
|
|
226
|
+
export const calciteSpacingFixedXl: string;
|
|
227
|
+
/** deprecated */
|
|
228
|
+
export const calciteSpacingFixedXxl: string;
|
|
229
|
+
/** deprecated */
|
|
205
230
|
export const calciteSpacingFixedXxxl: string;
|
|
206
231
|
export const calciteSpacingNone: string;
|
|
207
232
|
export const calciteSpacingPx: string;
|
package/dist/es6/global.js
CHANGED
|
@@ -90,6 +90,7 @@ export const calciteColorInversePress = { light: "#212121", dark: "#f2f2f2" };
|
|
|
90
90
|
export const calciteColorText1 = { light: "#141414", dark: "#ffffff" };
|
|
91
91
|
export const calciteColorText2 = { light: "#4a4a4a", dark: "#bfbfbf" };
|
|
92
92
|
export const calciteColorText3 = { light: "#6b6b6b", dark: "#9e9e9e" };
|
|
93
|
+
export const calciteColorTextHighlight = { light: "#004874", dark: "#c7eaff" };
|
|
93
94
|
export const calciteColorTextInverse = { light: "#ffffff", dark: "#141414" };
|
|
94
95
|
export const calciteColorTextLink = { light: "#00619b", dark: "#00a0ff" };
|
|
95
96
|
export const calciteColorBorder1 = { light: "#c9c9c9", dark: "#545454" };
|
package/dist/es6/light.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export const calciteColorInversePress: string;
|
|
|
38
38
|
export const calciteColorText1: string;
|
|
39
39
|
export const calciteColorText2: string;
|
|
40
40
|
export const calciteColorText3: string;
|
|
41
|
+
export const calciteColorTextHighlight: string;
|
|
41
42
|
export const calciteColorTextInverse: string;
|
|
42
43
|
export const calciteColorTextLink: string;
|
|
43
44
|
export const calciteColorBorder1: string;
|
package/dist/es6/light.js
CHANGED
|
@@ -38,6 +38,7 @@ export const calciteColorInversePress = "#212121";
|
|
|
38
38
|
export const calciteColorText1 = "#141414";
|
|
39
39
|
export const calciteColorText2 = "#4a4a4a";
|
|
40
40
|
export const calciteColorText3 = "#6b6b6b";
|
|
41
|
+
export const calciteColorTextHighlight = "#004874";
|
|
41
42
|
export const calciteColorTextInverse = "#ffffff";
|
|
42
43
|
export const calciteColorTextLink = "#00619b";
|
|
43
44
|
export const calciteColorBorder1 = "#c9c9c9";
|