creactive 0.0.179 → 0.0.181

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.
@@ -2,5 +2,7 @@ export { Gradient } from './gradient';
2
2
  export type { GradientLinearComponent, GradientLinearProperties, GradientObject, GradientStopComponent, GradientStopProperties, } from './gradient';
3
3
  export { Text } from './text';
4
4
  export type { TextComponent, TextMeasureCallback, TextProperties, TextReference, } from './text';
5
+ export { Transition } from './transition';
6
+ export type { TransitionComponent, TransitionProperties } from './transition';
5
7
  export { View } from './view';
6
8
  export type { ViewComponent, ViewLayoutEvent, ViewProperties } from './view';
@@ -31,8 +31,7 @@ export declare enum TextColor {
31
31
  FAILURE_600 = 23,
32
32
  FAILURE_700 = 24,
33
33
  FAILURE_800 = 25,
34
- FAILURE_900 = 26,
35
- TRANSPARENT = 27
34
+ FAILURE_900 = 26
36
35
  }
37
36
  /**
38
37
  * Supported text background color constants.
@@ -70,11 +70,11 @@ export interface TextProperties extends PropsWithChildren {
70
70
  */
71
71
  maxLines?: number;
72
72
  /**
73
- * Themed or transparent color.
73
+ * Themed, transparent, or custom color value.
74
74
  * @see Text.Color
75
75
  * @default Text.Color.BASE_800
76
76
  */
77
- color?: TextColor;
77
+ color?: TextColor | Color;
78
78
  /**
79
79
  * Themed background color.
80
80
  * @see Text.BackgroundColor
@@ -0,0 +1,5 @@
1
+ export declare enum TransitionDuration {
2
+ SM = 0,
3
+ MD = 1,
4
+ LG = 2
5
+ }
@@ -0,0 +1 @@
1
+ export { TransitionDuration } from './duration';
@@ -0,0 +1,3 @@
1
+ import type { TransitionComponent, TransitionProperties } from './transition.types';
2
+ export declare const Transition: TransitionComponent;
3
+ export type { TransitionComponent, TransitionProperties };
@@ -0,0 +1,58 @@
1
+ import type { Fraction, FractionValue, PixelDimension } from '../../../helpers';
2
+ import type { FunctionComponent, PropsWithChildren } from 'react';
3
+ import type { TransitionDuration } from './constants';
4
+ export interface TransitionProperties extends PropsWithChildren {
5
+ /**
6
+ * Allows to select transition in tests.
7
+ * @default undefined
8
+ */
9
+ testId?: string;
10
+ /**
11
+ * Target opacity of the transition.
12
+ * Animates from the previous value to the new one.
13
+ * @see Fraction
14
+ * @default undefined
15
+ */
16
+ opacity?: Fraction;
17
+ /**
18
+ * Target scale of the transition.
19
+ * Animates from the previous value to the new one.
20
+ * @see Fraction
21
+ * @default undefined
22
+ */
23
+ scale?: Fraction;
24
+ /**
25
+ * Target horizontal translation of the transition.
26
+ * Animates from the previous value to the new one.
27
+ * @see Dimension
28
+ * @default undefined
29
+ */
30
+ translateX?: PixelDimension;
31
+ /**
32
+ * Target vertical translation of the transition.
33
+ * Animates from the previous value to the new one.
34
+ * @see Dimension
35
+ * @default undefined
36
+ */
37
+ translateY?: PixelDimension;
38
+ /**
39
+ * Duration of the transition animation.
40
+ * @see Transition.Duration
41
+ * @default Transition.Duration.MD
42
+ */
43
+ duration?: TransitionDuration;
44
+ }
45
+ export type TransitionComponent = FunctionComponent<TransitionProperties> & {
46
+ Duration: Record<keyof typeof TransitionDuration, TransitionDuration>;
47
+ };
48
+ /**
49
+ * Styled transition properties type.
50
+ * Used to render transition component on web.
51
+ */
52
+ export type TransitionStyledProperties = {
53
+ css: {
54
+ opacity?: FractionValue;
55
+ transform?: string;
56
+ transition: string;
57
+ };
58
+ };
@@ -21,5 +21,23 @@ export declare enum ViewBackgroundColor {
21
21
  PRIMARY_600 = 14,
22
22
  PRIMARY_700 = 15,
23
23
  PRIMARY_800 = 16,
24
- PRIMARY_900 = 17
24
+ PRIMARY_900 = 17,
25
+ ACCENT_100 = 18,
26
+ ACCENT_200 = 19,
27
+ ACCENT_300 = 20,
28
+ ACCENT_400 = 21,
29
+ ACCENT_500 = 22,
30
+ ACCENT_600 = 23,
31
+ ACCENT_700 = 24,
32
+ ACCENT_800 = 25,
33
+ ACCENT_900 = 26,
34
+ SUBACCENT_100 = 27,
35
+ SUBACCENT_200 = 28,
36
+ SUBACCENT_300 = 29,
37
+ SUBACCENT_400 = 30,
38
+ SUBACCENT_500 = 31,
39
+ SUBACCENT_600 = 32,
40
+ SUBACCENT_700 = 33,
41
+ SUBACCENT_800 = 34,
42
+ SUBACCENT_900 = 35
25
43
  }
@@ -297,11 +297,11 @@ export interface ViewProperties extends PropsWithChildren {
297
297
  */
298
298
  borderRadiusBottomRight?: ViewBorderRadius;
299
299
  /**
300
- * View background color.
300
+ * Themed or custom background color.
301
301
  * @see View.BackgroundColor
302
- * @default View.BackgroundColor.TRANSPARENT
302
+ * @default undefined
303
303
  */
304
- backgroundColor?: ViewBackgroundColor;
304
+ backgroundColor?: ViewBackgroundColor | Color;
305
305
  /**
306
306
  * Callback function that is called when the layout of the view changes.
307
307
  * @param event Event containing the width and height of the view.
@@ -1,2 +1,2 @@
1
- export { Gradient, Text, View } from './atoms';
2
- export type { GradientLinearComponent, GradientLinearProperties, GradientObject, GradientStopComponent, GradientStopProperties, TextComponent, TextMeasureCallback, TextProperties, TextReference, ViewComponent, ViewLayoutEvent, ViewProperties, } from './atoms';
1
+ export { Gradient, Text, Transition, View } from './atoms';
2
+ export type { GradientLinearComponent, GradientLinearProperties, GradientObject, GradientStopComponent, GradientStopProperties, TextComponent, TextMeasureCallback, TextProperties, TextReference, TransitionComponent, TransitionProperties, ViewComponent, ViewLayoutEvent, ViewProperties, } from './atoms';
@@ -16,6 +16,24 @@ export declare const COLOR_BACKGROUND_PRIMARY_600 = "rgb(15,15,20)";
16
16
  export declare const COLOR_BACKGROUND_PRIMARY_700 = "rgb(10,10,15)";
17
17
  export declare const COLOR_BACKGROUND_PRIMARY_800 = "rgb(5,5,10)";
18
18
  export declare const COLOR_BACKGROUND_PRIMARY_900 = "rgb(0,0,5)";
19
+ export declare const COLOR_BACKGROUND_ACCENT_100 = "rgb(215,235,255)";
20
+ export declare const COLOR_BACKGROUND_ACCENT_200 = "rgb(200,225,252)";
21
+ export declare const COLOR_BACKGROUND_ACCENT_300 = "rgb(180,215,249)";
22
+ export declare const COLOR_BACKGROUND_ACCENT_400 = "rgb(160,205,246)";
23
+ export declare const COLOR_BACKGROUND_ACCENT_500 = "rgb(140,195,243)";
24
+ export declare const COLOR_BACKGROUND_ACCENT_600 = "rgb(115,180,238)";
25
+ export declare const COLOR_BACKGROUND_ACCENT_700 = "rgb(95,168,233)";
26
+ export declare const COLOR_BACKGROUND_ACCENT_800 = "rgb(75,155,225)";
27
+ export declare const COLOR_BACKGROUND_ACCENT_900 = "rgb(50,130,200)";
28
+ export declare const COLOR_BACKGROUND_SUBACCENT_100 = "rgb(215,245,235)";
29
+ export declare const COLOR_BACKGROUND_SUBACCENT_200 = "rgb(200,240,225)";
30
+ export declare const COLOR_BACKGROUND_SUBACCENT_300 = "rgb(185,235,215)";
31
+ export declare const COLOR_BACKGROUND_SUBACCENT_400 = "rgb(170,230,205)";
32
+ export declare const COLOR_BACKGROUND_SUBACCENT_500 = "rgb(155,225,195)";
33
+ export declare const COLOR_BACKGROUND_SUBACCENT_600 = "rgb(145,222,190)";
34
+ export declare const COLOR_BACKGROUND_SUBACCENT_700 = "rgb(135,218,185)";
35
+ export declare const COLOR_BACKGROUND_SUBACCENT_800 = "rgb(125,215,180)";
36
+ export declare const COLOR_BACKGROUND_SUBACCENT_900 = "rgb(100,195,160)";
19
37
  export declare const COLOR_BORDER_BASE_100 = "rgb(235,235,240)";
20
38
  export declare const COLOR_BORDER_BASE_200 = "rgb(230,230,235)";
21
39
  export declare const COLOR_BORDER_BASE_300 = "rgb(225,225,230)";
@@ -1,5 +1,5 @@
1
1
  export { BORDER_RADIUS_BASE_LG, BORDER_RADIUS_BASE_MD, BORDER_RADIUS_BASE_SM, BORDER_RADIUS_BASE_X2L, BORDER_RADIUS_BASE_X3L, BORDER_RADIUS_BASE_X4L, BORDER_RADIUS_BASE_X5L, BORDER_RADIUS_BASE_X6L, BORDER_RADIUS_BASE_XL, BORDER_RADIUS_BASE_XS, BORDER_WIDTH_BASE_LG, BORDER_WIDTH_BASE_MD, BORDER_WIDTH_BASE_SM, } from './border';
2
- export { COLOR_BACKGROUND_BASE_100, COLOR_BACKGROUND_BASE_200, COLOR_BACKGROUND_BASE_300, COLOR_BACKGROUND_BASE_400, COLOR_BACKGROUND_BASE_500, COLOR_BACKGROUND_BASE_600, COLOR_BACKGROUND_BASE_700, COLOR_BACKGROUND_BASE_800, COLOR_BACKGROUND_BASE_900, COLOR_BACKGROUND_PRIMARY_100, COLOR_BACKGROUND_PRIMARY_200, COLOR_BACKGROUND_PRIMARY_300, COLOR_BACKGROUND_PRIMARY_400, COLOR_BACKGROUND_PRIMARY_500, COLOR_BACKGROUND_PRIMARY_600, COLOR_BACKGROUND_PRIMARY_700, COLOR_BACKGROUND_PRIMARY_800, COLOR_BACKGROUND_PRIMARY_900, COLOR_BORDER_BASE_100, COLOR_BORDER_BASE_200, COLOR_BORDER_BASE_300, COLOR_BORDER_BASE_400, COLOR_BORDER_BASE_500, COLOR_BORDER_BASE_600, COLOR_BORDER_BASE_700, COLOR_BORDER_BASE_800, COLOR_BORDER_BASE_900, COLOR_FOREGROUND_BASE_100, COLOR_FOREGROUND_BASE_200, COLOR_FOREGROUND_BASE_300, COLOR_FOREGROUND_BASE_400, COLOR_FOREGROUND_BASE_500, COLOR_FOREGROUND_BASE_600, COLOR_FOREGROUND_BASE_700, COLOR_FOREGROUND_BASE_800, COLOR_FOREGROUND_BASE_900, COLOR_FOREGROUND_FAILURE_100, COLOR_FOREGROUND_FAILURE_200, COLOR_FOREGROUND_FAILURE_300, COLOR_FOREGROUND_FAILURE_400, COLOR_FOREGROUND_FAILURE_500, COLOR_FOREGROUND_FAILURE_600, COLOR_FOREGROUND_FAILURE_700, COLOR_FOREGROUND_FAILURE_800, COLOR_FOREGROUND_FAILURE_900, COLOR_FOREGROUND_INVERSE_100, COLOR_FOREGROUND_INVERSE_200, COLOR_FOREGROUND_INVERSE_300, COLOR_FOREGROUND_INVERSE_400, COLOR_FOREGROUND_INVERSE_500, COLOR_FOREGROUND_INVERSE_600, COLOR_FOREGROUND_INVERSE_700, COLOR_FOREGROUND_INVERSE_800, COLOR_FOREGROUND_INVERSE_900, } from './color';
2
+ export { COLOR_BACKGROUND_BASE_100, COLOR_BACKGROUND_BASE_200, COLOR_BACKGROUND_BASE_300, COLOR_BACKGROUND_BASE_400, COLOR_BACKGROUND_BASE_500, COLOR_BACKGROUND_BASE_600, COLOR_BACKGROUND_BASE_700, COLOR_BACKGROUND_BASE_800, COLOR_BACKGROUND_BASE_900, COLOR_BACKGROUND_PRIMARY_100, COLOR_BACKGROUND_PRIMARY_200, COLOR_BACKGROUND_PRIMARY_300, COLOR_BACKGROUND_PRIMARY_400, COLOR_BACKGROUND_PRIMARY_500, COLOR_BACKGROUND_PRIMARY_600, COLOR_BACKGROUND_PRIMARY_700, COLOR_BACKGROUND_PRIMARY_800, COLOR_BACKGROUND_PRIMARY_900, COLOR_BACKGROUND_ACCENT_100, COLOR_BACKGROUND_ACCENT_200, COLOR_BACKGROUND_ACCENT_300, COLOR_BACKGROUND_ACCENT_400, COLOR_BACKGROUND_ACCENT_500, COLOR_BACKGROUND_ACCENT_600, COLOR_BACKGROUND_ACCENT_700, COLOR_BACKGROUND_ACCENT_800, COLOR_BACKGROUND_ACCENT_900, COLOR_BACKGROUND_SUBACCENT_100, COLOR_BACKGROUND_SUBACCENT_200, COLOR_BACKGROUND_SUBACCENT_300, COLOR_BACKGROUND_SUBACCENT_400, COLOR_BACKGROUND_SUBACCENT_500, COLOR_BACKGROUND_SUBACCENT_600, COLOR_BACKGROUND_SUBACCENT_700, COLOR_BACKGROUND_SUBACCENT_800, COLOR_BACKGROUND_SUBACCENT_900, COLOR_BORDER_BASE_100, COLOR_BORDER_BASE_200, COLOR_BORDER_BASE_300, COLOR_BORDER_BASE_400, COLOR_BORDER_BASE_500, COLOR_BORDER_BASE_600, COLOR_BORDER_BASE_700, COLOR_BORDER_BASE_800, COLOR_BORDER_BASE_900, COLOR_FOREGROUND_BASE_100, COLOR_FOREGROUND_BASE_200, COLOR_FOREGROUND_BASE_300, COLOR_FOREGROUND_BASE_400, COLOR_FOREGROUND_BASE_500, COLOR_FOREGROUND_BASE_600, COLOR_FOREGROUND_BASE_700, COLOR_FOREGROUND_BASE_800, COLOR_FOREGROUND_BASE_900, COLOR_FOREGROUND_FAILURE_100, COLOR_FOREGROUND_FAILURE_200, COLOR_FOREGROUND_FAILURE_300, COLOR_FOREGROUND_FAILURE_400, COLOR_FOREGROUND_FAILURE_500, COLOR_FOREGROUND_FAILURE_600, COLOR_FOREGROUND_FAILURE_700, COLOR_FOREGROUND_FAILURE_800, COLOR_FOREGROUND_FAILURE_900, COLOR_FOREGROUND_INVERSE_100, COLOR_FOREGROUND_INVERSE_200, COLOR_FOREGROUND_INVERSE_300, COLOR_FOREGROUND_INVERSE_400, COLOR_FOREGROUND_INVERSE_500, COLOR_FOREGROUND_INVERSE_600, COLOR_FOREGROUND_INVERSE_700, COLOR_FOREGROUND_INVERSE_800, COLOR_FOREGROUND_INVERSE_900, } from './color';
3
3
  export { DURATION_BASE_LG, DURATION_BASE_MD, DURATION_BASE_SM, } from './duration';
4
4
  export { FONT_FAMILY_BASE, FONT_FAMILY_TYPOGRAPHIC, FONT_SIZE_BASE_LG, FONT_SIZE_BASE_MD, FONT_SIZE_BASE_SM, FONT_SIZE_BASE_X2L, FONT_SIZE_BASE_X2S, FONT_SIZE_BASE_X3L, FONT_SIZE_BASE_X4L, FONT_SIZE_BASE_X5L, FONT_SIZE_BASE_X6L, FONT_SIZE_BASE_XL, FONT_SIZE_BASE_XS, FONT_WEIGHT_BASE_BLACK, FONT_WEIGHT_BASE_BOLD, FONT_WEIGHT_BASE_EXTRABOLD, FONT_WEIGHT_BASE_EXTRALIGHT, FONT_WEIGHT_BASE_LIGHT, FONT_WEIGHT_BASE_MEDIUM, FONT_WEIGHT_BASE_REGULAR, FONT_WEIGHT_BASE_SEMIBOLD, FONT_WEIGHT_BASE_THIN, } from './font';
5
5
  export { ICON_SIZE_BASE_LG, ICON_SIZE_BASE_MD, ICON_SIZE_BASE_SM } from './icon';
@@ -53,6 +53,60 @@ export declare const useThemeStyleSheet: () => {
53
53
  colorBackgroundPrimary900: {
54
54
  backgroundColor: import("../../..").Color;
55
55
  };
56
+ colorBackgroundAccent100: {
57
+ backgroundColor: import("../../..").Color;
58
+ };
59
+ colorBackgroundAccent200: {
60
+ backgroundColor: import("../../..").Color;
61
+ };
62
+ colorBackgroundAccent300: {
63
+ backgroundColor: import("../../..").Color;
64
+ };
65
+ colorBackgroundAccent400: {
66
+ backgroundColor: import("../../..").Color;
67
+ };
68
+ colorBackgroundAccent500: {
69
+ backgroundColor: import("../../..").Color;
70
+ };
71
+ colorBackgroundAccent600: {
72
+ backgroundColor: import("../../..").Color;
73
+ };
74
+ colorBackgroundAccent700: {
75
+ backgroundColor: import("../../..").Color;
76
+ };
77
+ colorBackgroundAccent800: {
78
+ backgroundColor: import("../../..").Color;
79
+ };
80
+ colorBackgroundAccent900: {
81
+ backgroundColor: import("../../..").Color;
82
+ };
83
+ colorBackgroundSubaccent100: {
84
+ backgroundColor: import("../../..").Color;
85
+ };
86
+ colorBackgroundSubaccent200: {
87
+ backgroundColor: import("../../..").Color;
88
+ };
89
+ colorBackgroundSubaccent300: {
90
+ backgroundColor: import("../../..").Color;
91
+ };
92
+ colorBackgroundSubaccent400: {
93
+ backgroundColor: import("../../..").Color;
94
+ };
95
+ colorBackgroundSubaccent500: {
96
+ backgroundColor: import("../../..").Color;
97
+ };
98
+ colorBackgroundSubaccent600: {
99
+ backgroundColor: import("../../..").Color;
100
+ };
101
+ colorBackgroundSubaccent700: {
102
+ backgroundColor: import("../../..").Color;
103
+ };
104
+ colorBackgroundSubaccent800: {
105
+ backgroundColor: import("../../..").Color;
106
+ };
107
+ colorBackgroundSubaccent900: {
108
+ backgroundColor: import("../../..").Color;
109
+ };
56
110
  colorBorderBase100: {
57
111
  borderColor: import("../../..").Color;
58
112
  };
@@ -9,137 +9,227 @@ import type { FunctionComponent, PropsWithChildren } from 'react';
9
9
  export interface ThemeContextValue {
10
10
  /**
11
11
  * Least contrast base background color.
12
- * @default rgb(198,198,202)
12
+ * @default rgb(215,215,220)
13
13
  */
14
14
  colorBackgroundBase100: Color;
15
15
  /**
16
16
  * Dim base background color.
17
- * @default rgb(212,212,216)
17
+ * @default rgb(220,220,225)
18
18
  */
19
19
  colorBackgroundBase200: Color;
20
20
  /**
21
21
  * Mix of dim and muted base background color.
22
- * @default rgb(216,216,228)
22
+ * @default rgb(225,225,230)
23
23
  */
24
24
  colorBackgroundBase300: Color;
25
25
  /**
26
26
  * Muted base background color.
27
- * @default rgb(218,218,234)
27
+ * @default rgb(230,230,235)
28
28
  */
29
29
  colorBackgroundBase400: Color;
30
30
  /**
31
31
  * Mix of muted and subtle base background color.
32
- * @default rgb(224,224,238)
32
+ * @default rgb(235,235,240)
33
33
  */
34
34
  colorBackgroundBase500: Color;
35
35
  /**
36
36
  * Subtle base background color.
37
- * @default rgb(244,244,245)
37
+ * @default rgb(240,240,245)
38
38
  */
39
39
  colorBackgroundBase600: Color;
40
40
  /**
41
41
  * Mix of subtle and default base background color.
42
- * @default rgb(247,247,249)
42
+ * @default rgb(245,245,250)
43
43
  */
44
44
  colorBackgroundBase700: Color;
45
45
  /**
46
46
  * Base default interface background color.
47
- * @default rgb(249,249,250)
47
+ * @default rgb(250,250,255)
48
48
  */
49
49
  colorBackgroundBase800: Color;
50
50
  /**
51
51
  * Most contrast base background color.
52
- * @default rgb(254,254,255)
52
+ * @default rgb(255,255,255)
53
53
  */
54
54
  colorBackgroundBase900: Color;
55
55
  /**
56
56
  * Least contrast primary background color.
57
- * @default rgb(102,102,116)
57
+ * @default rgb(40,40,45)
58
58
  */
59
59
  colorBackgroundPrimary100: Color;
60
60
  /**
61
61
  * Dim primary background color.
62
- * @default rgb(82,82,92)
62
+ * @default rgb(35,35,40)
63
63
  */
64
64
  colorBackgroundPrimary200: Color;
65
65
  /**
66
66
  * Mix of dim and muted primary background color.
67
- * @default rgb(74,74,88)
67
+ * @default rgb(30,30,35)
68
68
  */
69
69
  colorBackgroundPrimary300: Color;
70
70
  /**
71
71
  * Muted primary background color.
72
- * @default rgb(63,63,70)
72
+ * @default rgb(25,25,30)
73
73
  */
74
74
  colorBackgroundPrimary400: Color;
75
75
  /**
76
76
  * Mix of muted and subtle primary background color.
77
- * @default rgb(49,49,56)
77
+ * @default rgb(20,20,25)
78
78
  */
79
79
  colorBackgroundPrimary500: Color;
80
80
  /**
81
81
  * Subtle primary background color.
82
- * @default rgb(39,39,42)
82
+ * @default rgb(15,15,20)
83
83
  */
84
84
  colorBackgroundPrimary600: Color;
85
85
  /**
86
86
  * Mix of subtle and default primary background color.
87
- * @default rgb(30,30,34)
87
+ * @default rgb(10,10,15)
88
88
  */
89
89
  colorBackgroundPrimary700: Color;
90
90
  /**
91
91
  * Primary default background color.
92
- * @default rgb(24,24,27)
92
+ * @default rgb(5,5,10)
93
93
  */
94
94
  colorBackgroundPrimary800: Color;
95
95
  /**
96
96
  * Most contrast primary background color.
97
- * @default rgb(6,6,14)
97
+ * @default rgb(0,0,5)
98
98
  */
99
99
  colorBackgroundPrimary900: Color;
100
+ /**
101
+ * Least contrast accent background color.
102
+ * @default rgb(215,235,255)
103
+ */
104
+ colorBackgroundAccent100: Color;
105
+ /**
106
+ * Dim accent background color.
107
+ * @default rgb(200,225,252)
108
+ */
109
+ colorBackgroundAccent200: Color;
110
+ /**
111
+ * Mix of dim and muted accent background color.
112
+ * @default rgb(180,215,249)
113
+ */
114
+ colorBackgroundAccent300: Color;
115
+ /**
116
+ * Muted accent background color.
117
+ * @default rgb(160,205,246)
118
+ */
119
+ colorBackgroundAccent400: Color;
120
+ /**
121
+ * Mix of muted and subtle accent background color.
122
+ * @default rgb(140,195,243)
123
+ */
124
+ colorBackgroundAccent500: Color;
125
+ /**
126
+ * Subtle accent background color.
127
+ * @default rgb(115,180,238)
128
+ */
129
+ colorBackgroundAccent600: Color;
130
+ /**
131
+ * Mix of subtle and default accent background color.
132
+ * @default rgb(95,168,233)
133
+ */
134
+ colorBackgroundAccent700: Color;
135
+ /**
136
+ * Accent default background color.
137
+ * @default rgb(75,155,225)
138
+ */
139
+ colorBackgroundAccent800: Color;
140
+ /**
141
+ * Most contrast accent background color.
142
+ * @default rgb(50,130,200)
143
+ */
144
+ colorBackgroundAccent900: Color;
145
+ /**
146
+ * Least contrast subaccent background color.
147
+ * @default rgb(215,245,235)
148
+ */
149
+ colorBackgroundSubaccent100: Color;
150
+ /**
151
+ * Dim subaccent background color.
152
+ * @default rgb(200,240,225)
153
+ */
154
+ colorBackgroundSubaccent200: Color;
155
+ /**
156
+ * Mix of dim and muted subaccent background color.
157
+ * @default rgb(185,235,215)
158
+ */
159
+ colorBackgroundSubaccent300: Color;
160
+ /**
161
+ * Muted subaccent background color.
162
+ * @default rgb(170,230,205)
163
+ */
164
+ colorBackgroundSubaccent400: Color;
165
+ /**
166
+ * Mix of muted and subtle subaccent background color.
167
+ * @default rgb(155,225,195)
168
+ */
169
+ colorBackgroundSubaccent500: Color;
170
+ /**
171
+ * Subtle subaccent background color.
172
+ * @default rgb(145,222,190)
173
+ */
174
+ colorBackgroundSubaccent600: Color;
175
+ /**
176
+ * Mix of subtle and default subaccent background color.
177
+ * @default rgb(135,218,185)
178
+ */
179
+ colorBackgroundSubaccent700: Color;
180
+ /**
181
+ * Subaccent default background color.
182
+ * @default rgb(125,215,180)
183
+ */
184
+ colorBackgroundSubaccent800: Color;
185
+ /**
186
+ * Most contrast subaccent background color.
187
+ * @default rgb(100,195,160)
188
+ */
189
+ colorBackgroundSubaccent900: Color;
100
190
  /**
101
191
  * Least contrast base border color.
102
- * @default rgb(253,252,254)
192
+ * @default rgb(235,235,240)
103
193
  */
104
194
  colorBorderBase100: Color;
105
195
  /**
106
196
  * Dim base border color.
107
- * @default rgb(249,249,250)
197
+ * @default rgb(230,230,235)
108
198
  */
109
199
  colorBorderBase200: Color;
110
200
  /**
111
201
  * Mix of dim and muted base border color.
112
- * @default rgb(247,247,249)
202
+ * @default rgb(225,225,230)
113
203
  */
114
204
  colorBorderBase300: Color;
115
205
  /**
116
206
  * Muted base border color.
117
- * @default rgb(244,244,245)
207
+ * @default rgb(220,220,225)
118
208
  */
119
209
  colorBorderBase400: Color;
120
210
  /**
121
211
  * Mix of muted and subtle base border color.
122
- * @default rgb(224,224,238)
212
+ * @default rgb(215,215,220)
123
213
  */
124
214
  colorBorderBase500: Color;
125
215
  /**
126
216
  * Subtle base border color.
127
- * @default rgb(218,218,234)
217
+ * @default rgb(210,210,215)
128
218
  */
129
219
  colorBorderBase600: Color;
130
220
  /**
131
221
  * Mix of subtle and default base border color.
132
- * @default rgb(216,216,228)
222
+ * @default rgb(205,205,210)
133
223
  */
134
224
  colorBorderBase700: Color;
135
225
  /**
136
226
  * Base default border color.
137
- * @default rgb(212,212,216)
227
+ * @default rgb(200,200,205)
138
228
  */
139
229
  colorBorderBase800: Color;
140
230
  /**
141
231
  * Most contrast base border color.
142
- * @default rgb(198,198,202)
232
+ * @default rgb(195,195,200)
143
233
  */
144
234
  colorBorderBase900: Color;
145
235
  /**