@rovula/ui 0.1.6 → 0.1.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/cjs/bundle.css +630 -467
- package/dist/cjs/bundle.js +1545 -1545
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/AlertDialog/AlertDialog.stories.d.ts +3 -0
- package/dist/cjs/types/components/Dialog/Dialog.d.ts +7 -1
- package/dist/cjs/types/components/Dialog/Dialog.stories.d.ts +3 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +2 -0
- package/dist/cjs/types/components/Form/Field.d.ts +26 -0
- package/dist/cjs/types/components/Form/FieldMessage.d.ts +7 -0
- package/dist/cjs/types/components/Form/Form.d.ts +49 -11
- package/dist/cjs/types/components/Form/Form.stories.d.ts +23 -0
- package/dist/cjs/types/components/Form/ValidationHintList.d.ts +17 -0
- package/dist/cjs/types/components/Form/ValidationHintList.stories.d.ts +9 -0
- package/dist/cjs/types/components/Form/index.d.ts +10 -0
- package/dist/cjs/types/components/Form/useOptionBridge.d.ts +17 -0
- package/dist/cjs/types/components/OtpInput/OtpInput.d.ts +17 -0
- package/dist/cjs/types/components/OtpInput/OtpInput.stories.d.ts +15 -0
- package/dist/cjs/types/components/OtpInput/OtpInputGroup.d.ts +25 -0
- package/dist/cjs/types/components/OtpInput/index.d.ts +5 -0
- package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +3 -0
- package/dist/cjs/types/index.d.ts +5 -0
- package/dist/cjs/types/theme/ThemeColorCoverageRuntime.stories.d.ts +10 -0
- package/dist/cjs/types/utils/colors.d.ts +351 -267
- package/dist/components/ActionButton/ActionButton.stories.js +2 -2
- package/dist/components/ActionButton/ActionButton.styles.js +1 -1
- package/dist/components/AlertDialog/AlertDialog.js +6 -6
- package/dist/components/AlertDialog/AlertDialog.stories.js +3 -0
- package/dist/components/Avatar/Avatar.stories.js +1 -1
- package/dist/components/Avatar/Avatar.styles.js +1 -1
- package/dist/components/Avatar/AvatarBase.js +1 -1
- package/dist/components/Avatar/AvatarGroup.stories.js +1 -1
- package/dist/components/Button/Buttons.stories.js +2 -2
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +1 -1
- package/dist/components/Checkbox/Checkbox.stories.js +17 -7
- package/dist/components/Collapsible/Collapsible.styles.js +1 -1
- package/dist/components/DataTable/DataTable.js +2 -2
- package/dist/components/Dialog/Dialog.js +12 -7
- package/dist/components/Dialog/Dialog.stories.js +90 -2
- package/dist/components/Dropdown/Dropdown.js +2 -2
- package/dist/components/DropdownMenu/DropdownMenu.js +3 -3
- package/dist/components/FocusedScrollView/FocusedScrollView.stories.js +6 -6
- package/dist/components/Form/Field.js +60 -0
- package/dist/components/Form/FieldMessage.js +24 -0
- package/dist/components/Form/Form.js +73 -41
- package/dist/components/Form/Form.stories.js +221 -0
- package/dist/components/Form/ValidationHintList.js +30 -0
- package/dist/components/Form/ValidationHintList.stories.js +50 -0
- package/dist/components/Form/index.js +5 -0
- package/dist/components/Form/useOptionBridge.js +27 -0
- package/dist/components/InputFilter/InputFilter.js +5 -4
- package/dist/components/InputFilter/InputFilter.stories.js +1 -1
- package/dist/components/InputFilter/InputFilter.styles.js +14 -1
- package/dist/components/Label/Label.styles.js +1 -1
- package/dist/components/Menu/Menu.js +2 -2
- package/dist/components/NumberInput/NumberInput.stories.js +1 -1
- package/dist/components/OtpInput/OtpInput.js +118 -0
- package/dist/components/OtpInput/OtpInput.stories.js +60 -0
- package/dist/components/OtpInput/OtpInputGroup.js +23 -0
- package/dist/components/OtpInput/index.js +3 -0
- package/dist/components/PasswordInput/PasswordInput.stories.js +1 -1
- package/dist/components/Popover/Popover.js +1 -1
- package/dist/components/RadioGroup/RadioGroup.js +1 -1
- package/dist/components/RadioGroup/RadioGroup.stories.js +2 -2
- package/dist/components/Search/Search.js +13 -1
- package/dist/components/Search/Search.stories.js +1 -1
- package/dist/components/Slider/Slider.js +1 -1
- package/dist/components/Slider/Slider.stories.js +5 -5
- package/dist/components/Switch/Switch.stories.js +2 -2
- package/dist/components/Switch/Switch.styles.js +1 -1
- package/dist/components/Table/Table.js +5 -5
- package/dist/components/Tabs/Tabs.js +12 -9
- package/dist/components/Tabs/Tabs.stories.js +1 -1
- package/dist/components/Text/Text.js +1 -1
- package/dist/components/Text/Text.stories.js +1 -1
- package/dist/components/TextArea/TextArea.stories.js +1 -1
- package/dist/components/TextArea/TextArea.styles.js +3 -3
- package/dist/components/TextInput/TextInput.js +3 -2
- package/dist/components/TextInput/TextInput.stories.js +3 -3
- package/dist/components/TextInput/TextInput.styles.js +41 -19
- package/dist/components/Toast/Toast.js +4 -2
- package/dist/components/Toast/Toast.stories.js +1 -1
- package/dist/components/Toast/Toast.styles.js +4 -4
- package/dist/components/Toast/Toaster.js +2 -2
- package/dist/components/Tree/Tree.stories.js +1 -1
- package/dist/components/Tree/TreeItem.js +1 -1
- package/dist/esm/bundle.css +630 -467
- package/dist/esm/bundle.js +1545 -1545
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/AlertDialog/AlertDialog.stories.d.ts +3 -0
- package/dist/esm/types/components/Dialog/Dialog.d.ts +7 -1
- package/dist/esm/types/components/Dialog/Dialog.stories.d.ts +3 -0
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +2 -0
- package/dist/esm/types/components/Form/Field.d.ts +26 -0
- package/dist/esm/types/components/Form/FieldMessage.d.ts +7 -0
- package/dist/esm/types/components/Form/Form.d.ts +49 -11
- package/dist/esm/types/components/Form/Form.stories.d.ts +23 -0
- package/dist/esm/types/components/Form/ValidationHintList.d.ts +17 -0
- package/dist/esm/types/components/Form/ValidationHintList.stories.d.ts +9 -0
- package/dist/esm/types/components/Form/index.d.ts +10 -0
- package/dist/esm/types/components/Form/useOptionBridge.d.ts +17 -0
- package/dist/esm/types/components/OtpInput/OtpInput.d.ts +17 -0
- package/dist/esm/types/components/OtpInput/OtpInput.stories.d.ts +15 -0
- package/dist/esm/types/components/OtpInput/OtpInputGroup.d.ts +25 -0
- package/dist/esm/types/components/OtpInput/index.d.ts +5 -0
- package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +3 -0
- package/dist/esm/types/index.d.ts +5 -0
- package/dist/esm/types/theme/ThemeColorCoverageRuntime.stories.d.ts +10 -0
- package/dist/esm/types/utils/colors.d.ts +351 -267
- package/dist/index.d.ts +512 -269
- package/dist/index.js +3 -0
- package/dist/src/theme/global.css +2739 -2681
- package/dist/theme/ThemeColorCoverageRuntime.stories.js +91 -0
- package/dist/utils/colors.js +359 -267
- package/package.json +4 -2
- package/src/components/ActionButton/ActionButton.stories.tsx +6 -6
- package/src/components/ActionButton/ActionButton.styles.ts +1 -1
- package/src/components/AlertDialog/AlertDialog.stories.tsx +22 -0
- package/src/components/AlertDialog/AlertDialog.tsx +6 -6
- package/src/components/Avatar/Avatar.stories.tsx +1 -1
- package/src/components/Avatar/Avatar.styles.ts +1 -1
- package/src/components/Avatar/AvatarBase.tsx +1 -1
- package/src/components/Avatar/AvatarGroup.stories.tsx +1 -1
- package/src/components/Button/Buttons.stories.tsx +25 -17
- package/src/components/Calendar/Calendar.tsx +3 -3
- package/src/components/Checkbox/Checkbox.stories.tsx +35 -12
- package/src/components/Checkbox/Checkbox.tsx +7 -5
- package/src/components/Collapsible/Collapsible.styles.ts +1 -1
- package/src/components/DataTable/DataTable.tsx +2 -2
- package/src/components/Dialog/Dialog.stories.tsx +173 -0
- package/src/components/Dialog/Dialog.tsx +32 -15
- package/src/components/Dropdown/Dropdown.styles.ts +1 -1
- package/src/components/Dropdown/Dropdown.tsx +16 -14
- package/src/components/DropdownMenu/DropdownMenu.tsx +3 -3
- package/src/components/FocusedScrollView/FocusedScrollView.stories.tsx +10 -10
- package/src/components/Form/Field.tsx +160 -0
- package/src/components/Form/FieldMessage.tsx +38 -0
- package/src/components/Form/Form.docs.mdx +67 -0
- package/src/components/Form/Form.stories.tsx +490 -0
- package/src/components/Form/Form.tsx +185 -87
- package/src/components/Form/README.md +284 -0
- package/src/components/Form/ValidationHintList.stories.tsx +118 -0
- package/src/components/Form/ValidationHintList.tsx +82 -0
- package/src/components/Form/index.ts +28 -0
- package/src/components/Form/useOptionBridge.ts +55 -0
- package/src/components/InputFilter/InputFilter.stories.tsx +1 -1
- package/src/components/InputFilter/InputFilter.styles.ts +14 -1
- package/src/components/InputFilter/InputFilter.tsx +33 -28
- package/src/components/Label/Label.styles.ts +2 -2
- package/src/components/Label/Label.tsx +1 -1
- package/src/components/Menu/Menu.tsx +12 -12
- package/src/components/NumberInput/NumberInput.stories.tsx +1 -1
- package/src/components/OtpInput/OtpInput.stories.tsx +168 -0
- package/src/components/OtpInput/OtpInput.tsx +210 -0
- package/src/components/OtpInput/OtpInputGroup.tsx +74 -0
- package/src/components/OtpInput/index.ts +5 -0
- package/src/components/PasswordInput/PasswordInput.stories.tsx +1 -1
- package/src/components/Popover/Popover.tsx +1 -1
- package/src/components/RadioGroup/RadioGroup.stories.tsx +4 -4
- package/src/components/RadioGroup/RadioGroup.tsx +2 -1
- package/src/components/Search/Search.stories.tsx +1 -1
- package/src/components/Search/Search.tsx +6 -2
- package/src/components/Slider/Slider.stories.tsx +7 -7
- package/src/components/Slider/Slider.tsx +1 -1
- package/src/components/Switch/Switch.stories.tsx +4 -4
- package/src/components/Switch/Switch.styles.ts +1 -1
- package/src/components/Table/Table.tsx +5 -5
- package/src/components/Tabs/Tabs.stories.tsx +1 -1
- package/src/components/Tabs/Tabs.tsx +29 -18
- package/src/components/Text/Text.stories.tsx +1 -1
- package/src/components/Text/Text.tsx +1 -1
- package/src/components/TextArea/TextArea.stories.tsx +1 -1
- package/src/components/TextArea/TextArea.styles.ts +3 -3
- package/src/components/TextInput/TextInput.stories.tsx +7 -7
- package/src/components/TextInput/TextInput.styles.ts +42 -19
- package/src/components/TextInput/TextInput.tsx +3 -1
- package/src/components/Toast/Toast.stories.tsx +1 -1
- package/src/components/Toast/Toast.styles.tsx +7 -7
- package/src/components/Toast/Toast.tsx +5 -4
- package/src/components/Toast/Toaster.tsx +17 -20
- package/src/components/Tree/Tree.stories.tsx +1 -1
- package/src/components/Tree/TreeItem.tsx +1 -1
- package/src/index.ts +5 -0
- package/src/theme/THEME_MAPPING.md +36 -37
- package/src/theme/ThemeColorCoverageRuntime.stories.tsx +236 -0
- package/src/theme/direct-token-migration-plan.md +121 -0
- package/src/theme/figma-mcp-check-report.md +225 -0
- package/src/theme/figma-mcp-component-checklist.json +1250 -0
- package/src/theme/global.css +7 -3
- package/src/theme/presets/colors.js +173 -64
- package/src/theme/themes/skyller/baseline.css +0 -4
- package/src/theme/themes/variable-mapping.css +1064 -0
- package/src/theme/themes/variable.css +248 -230
- package/src/theme/themes/xspector/baseline.css +0 -4
- package/src/theme/themes/xspector/components/dropdown-menu.css +4 -4
- package/src/theme/themes/xspector/components/loading.css +2 -2
- package/src/theme/tokens/baseline.css +0 -3
- package/src/theme/tokens/color.css +36 -65
- package/src/theme/tokens/components/action-button.css +6 -6
- package/src/theme/tokens/components/button.css +189 -189
- package/src/theme/tokens/components/dropdown-menu.css +5 -5
- package/src/theme/tokens/components/footer.css +1 -1
- package/src/theme/tokens/components/loading.css +2 -2
- package/src/theme/tokens/components/switch.css +11 -11
- package/src/theme/tokens/typography.css +28 -28
- package/src/theme/tokens_old/baseline.css +13 -0
- package/src/theme/tokens_old/color.css +78 -0
- package/src/theme/tokens_old/components/action-button.css +127 -0
- package/src/theme/tokens_old/components/button.css +512 -0
- package/src/theme/tokens_old/components/dropdown-menu.css +27 -0
- package/src/theme/tokens_old/components/footer.css +9 -0
- package/src/theme/tokens_old/components/loading.css +11 -0
- package/src/theme/tokens_old/components/navbar.css +9 -0
- package/src/theme/tokens_old/components/progress-bar.css +8 -0
- package/src/theme/tokens_old/components/switch.css +29 -0
- package/src/theme/tokens_old/typography.css +199 -0
- package/src/theme/tokens_old/variables.css +28 -0
- package/src/theme/utils.js +172 -33
- package/src/utils/colors.ts +367 -278
- package/src/theme/themes/skyller/color.css +0 -79
- package/src/theme/themes/skyller/palette.css +0 -143
- package/src/theme/themes/skyller/state.css +0 -94
- package/src/theme/themes/skyller/transparent.css +0 -94
- package/src/theme/themes/xspector/color.css +0 -83
- package/src/theme/themes/xspector/palette.css +0 -142
- package/src/theme/themes/xspector/state.css +0 -94
- package/src/theme/themes/xspector/transparent.css +0 -93
- /package/src/theme/{tokens → tokens_old}/palette.css +0 -0
- /package/src/theme/{tokens → tokens_old}/state.css +0 -0
- /package/src/theme/{tokens → tokens_old}/transparent.css +0 -0
|
@@ -1,197 +1,211 @@
|
|
|
1
1
|
/** CSS variable names for theme colors (resolved by data-theme) */
|
|
2
2
|
export declare const THEME_COLOR_KEYS: {
|
|
3
|
-
readonly "primary
|
|
4
|
-
readonly "
|
|
5
|
-
readonly "
|
|
6
|
-
readonly "
|
|
7
|
-
readonly "
|
|
8
|
-
readonly "
|
|
9
|
-
readonly "
|
|
10
|
-
readonly "primary-
|
|
11
|
-
readonly "primary-
|
|
12
|
-
readonly "primary-
|
|
13
|
-
readonly "primary-
|
|
14
|
-
readonly "primary-
|
|
15
|
-
readonly "primary-
|
|
16
|
-
readonly "primary-
|
|
17
|
-
readonly "primary-
|
|
18
|
-
readonly "primary-
|
|
19
|
-
readonly "
|
|
20
|
-
readonly "
|
|
21
|
-
readonly "
|
|
22
|
-
readonly "
|
|
23
|
-
readonly "
|
|
24
|
-
readonly "
|
|
25
|
-
readonly "
|
|
26
|
-
readonly "secondary-
|
|
27
|
-
readonly "secondary-
|
|
28
|
-
readonly "secondary-
|
|
29
|
-
readonly "secondary-
|
|
30
|
-
readonly "secondary-
|
|
31
|
-
readonly "secondary-
|
|
32
|
-
readonly "secondary-
|
|
33
|
-
readonly "secondary-
|
|
34
|
-
readonly "secondary-
|
|
35
|
-
readonly "
|
|
36
|
-
readonly "
|
|
37
|
-
readonly "
|
|
38
|
-
readonly "
|
|
39
|
-
readonly "
|
|
40
|
-
readonly "
|
|
41
|
-
readonly "
|
|
42
|
-
readonly "tertiary-
|
|
43
|
-
readonly "tertiary-
|
|
44
|
-
readonly "tertiary-
|
|
45
|
-
readonly "tertiary-
|
|
46
|
-
readonly "tertiary-
|
|
47
|
-
readonly "tertiary-
|
|
48
|
-
readonly "tertiary-
|
|
49
|
-
readonly "tertiary-
|
|
50
|
-
readonly "tertiary-
|
|
51
|
-
readonly "
|
|
52
|
-
readonly "
|
|
53
|
-
readonly "
|
|
54
|
-
readonly "
|
|
55
|
-
readonly "
|
|
56
|
-
readonly "
|
|
57
|
-
readonly "
|
|
58
|
-
readonly "grey-
|
|
59
|
-
readonly "grey-
|
|
60
|
-
readonly "grey-
|
|
61
|
-
readonly "grey-
|
|
62
|
-
readonly "grey-
|
|
63
|
-
readonly "grey-
|
|
64
|
-
readonly "grey-
|
|
65
|
-
readonly "grey-
|
|
66
|
-
readonly "grey-
|
|
67
|
-
readonly "
|
|
68
|
-
readonly "
|
|
69
|
-
readonly "
|
|
70
|
-
readonly "
|
|
71
|
-
readonly "
|
|
72
|
-
readonly "
|
|
73
|
-
readonly "
|
|
74
|
-
readonly "grey2-
|
|
75
|
-
readonly "grey2-
|
|
76
|
-
readonly "grey2-
|
|
77
|
-
readonly "grey2-
|
|
78
|
-
readonly "
|
|
79
|
-
readonly "
|
|
80
|
-
readonly "
|
|
81
|
-
readonly "
|
|
82
|
-
readonly "
|
|
83
|
-
readonly "
|
|
84
|
-
readonly "
|
|
85
|
-
readonly "info-
|
|
86
|
-
readonly "info-
|
|
87
|
-
readonly "info-
|
|
88
|
-
readonly "info-
|
|
89
|
-
readonly "
|
|
90
|
-
readonly "
|
|
91
|
-
readonly "
|
|
92
|
-
readonly "
|
|
93
|
-
readonly "
|
|
94
|
-
readonly "
|
|
95
|
-
readonly "
|
|
96
|
-
readonly "success-
|
|
97
|
-
readonly "success-
|
|
98
|
-
readonly "success-
|
|
99
|
-
readonly "success-
|
|
100
|
-
readonly "
|
|
101
|
-
readonly "
|
|
102
|
-
readonly "
|
|
103
|
-
readonly "
|
|
104
|
-
readonly "
|
|
105
|
-
readonly "
|
|
106
|
-
readonly "
|
|
107
|
-
readonly "warning-
|
|
108
|
-
readonly "warning-
|
|
109
|
-
readonly "warning-
|
|
110
|
-
readonly "warning-
|
|
111
|
-
readonly "
|
|
112
|
-
readonly "
|
|
113
|
-
readonly "
|
|
114
|
-
readonly "
|
|
115
|
-
readonly "
|
|
116
|
-
readonly "
|
|
117
|
-
readonly "
|
|
118
|
-
readonly "error-
|
|
119
|
-
readonly "error-
|
|
120
|
-
readonly "error-
|
|
121
|
-
readonly "error-
|
|
122
|
-
readonly
|
|
123
|
-
readonly "
|
|
124
|
-
readonly "
|
|
125
|
-
readonly "
|
|
126
|
-
readonly "
|
|
127
|
-
readonly "
|
|
128
|
-
readonly "
|
|
129
|
-
readonly
|
|
130
|
-
readonly "primary-
|
|
131
|
-
readonly "primary-
|
|
132
|
-
readonly
|
|
133
|
-
readonly "
|
|
134
|
-
readonly "
|
|
135
|
-
readonly "
|
|
136
|
-
readonly "
|
|
137
|
-
readonly "
|
|
138
|
-
readonly "
|
|
139
|
-
readonly
|
|
140
|
-
readonly "secondary-
|
|
141
|
-
readonly "secondary-
|
|
142
|
-
readonly
|
|
143
|
-
readonly "
|
|
144
|
-
readonly "
|
|
145
|
-
readonly "
|
|
146
|
-
readonly "
|
|
147
|
-
readonly "
|
|
148
|
-
readonly "
|
|
149
|
-
readonly
|
|
150
|
-
readonly "tertiary-
|
|
151
|
-
readonly "tertiary-
|
|
152
|
-
readonly
|
|
153
|
-
readonly "
|
|
154
|
-
readonly "
|
|
155
|
-
readonly "
|
|
156
|
-
readonly "
|
|
157
|
-
readonly "
|
|
158
|
-
readonly "
|
|
159
|
-
readonly
|
|
160
|
-
readonly "info-
|
|
161
|
-
readonly "info-
|
|
162
|
-
readonly
|
|
163
|
-
readonly "
|
|
164
|
-
readonly "
|
|
165
|
-
readonly "
|
|
166
|
-
readonly "
|
|
167
|
-
readonly "
|
|
168
|
-
readonly "
|
|
169
|
-
readonly
|
|
170
|
-
readonly "success-
|
|
171
|
-
readonly "success-
|
|
172
|
-
readonly
|
|
173
|
-
readonly "
|
|
174
|
-
readonly "
|
|
175
|
-
readonly "
|
|
176
|
-
readonly "
|
|
177
|
-
readonly "
|
|
178
|
-
readonly "
|
|
179
|
-
readonly
|
|
180
|
-
readonly "warning-
|
|
181
|
-
readonly "warning-
|
|
182
|
-
readonly
|
|
183
|
-
readonly "
|
|
184
|
-
readonly "
|
|
185
|
-
readonly "
|
|
186
|
-
readonly "
|
|
187
|
-
readonly "
|
|
188
|
-
readonly "
|
|
189
|
-
readonly
|
|
190
|
-
readonly "error-
|
|
191
|
-
readonly "error-
|
|
192
|
-
readonly "
|
|
193
|
-
readonly "
|
|
3
|
+
readonly "main-primary": "--main-primary";
|
|
4
|
+
readonly "main-secondary": "--main-secondary";
|
|
5
|
+
readonly "main-tertiary": "--main-tertiary";
|
|
6
|
+
readonly "brand-midnight-blue": "--brand-midnight-blue";
|
|
7
|
+
readonly "brand-columbia-blue": "--brand-columbia-blue";
|
|
8
|
+
readonly "brand-background": "--brand-background";
|
|
9
|
+
readonly "brand-lemon-glacier": "--brand-lemon-glacier";
|
|
10
|
+
readonly "primary-5": "--ramps-primary-5";
|
|
11
|
+
readonly "primary-10": "--ramps-primary-10";
|
|
12
|
+
readonly "primary-20": "--ramps-primary-20";
|
|
13
|
+
readonly "primary-30": "--ramps-primary-30";
|
|
14
|
+
readonly "primary-40": "--ramps-primary-40";
|
|
15
|
+
readonly "primary-50": "--ramps-primary-50";
|
|
16
|
+
readonly "primary-60": "--ramps-primary-60";
|
|
17
|
+
readonly "primary-70": "--ramps-primary-70";
|
|
18
|
+
readonly "primary-80": "--ramps-primary-80";
|
|
19
|
+
readonly "primary-90": "--ramps-primary-90";
|
|
20
|
+
readonly "primary-100": "--ramps-primary-100";
|
|
21
|
+
readonly "primary-110": "--ramps-primary-110";
|
|
22
|
+
readonly "primary-120": "--ramps-primary-120";
|
|
23
|
+
readonly "primary-130": "--ramps-primary-130";
|
|
24
|
+
readonly "primary-140": "--ramps-primary-140";
|
|
25
|
+
readonly "primary-150": "--ramps-primary-150";
|
|
26
|
+
readonly "secondary-5": "--ramps-secondary-5";
|
|
27
|
+
readonly "secondary-10": "--ramps-secondary-10";
|
|
28
|
+
readonly "secondary-20": "--ramps-secondary-20";
|
|
29
|
+
readonly "secondary-30": "--ramps-secondary-30";
|
|
30
|
+
readonly "secondary-40": "--ramps-secondary-40";
|
|
31
|
+
readonly "secondary-50": "--ramps-secondary-50";
|
|
32
|
+
readonly "secondary-60": "--ramps-secondary-60";
|
|
33
|
+
readonly "secondary-70": "--ramps-secondary-70";
|
|
34
|
+
readonly "secondary-80": "--ramps-secondary-80";
|
|
35
|
+
readonly "secondary-90": "--ramps-secondary-90";
|
|
36
|
+
readonly "secondary-100": "--ramps-secondary-100";
|
|
37
|
+
readonly "secondary-110": "--ramps-secondary-110";
|
|
38
|
+
readonly "secondary-120": "--ramps-secondary-120";
|
|
39
|
+
readonly "secondary-130": "--ramps-secondary-130";
|
|
40
|
+
readonly "secondary-140": "--ramps-secondary-140";
|
|
41
|
+
readonly "secondary-150": "--ramps-secondary-150";
|
|
42
|
+
readonly "tertiary-5": "--ramps-tertiary-5";
|
|
43
|
+
readonly "tertiary-10": "--ramps-tertiary-10";
|
|
44
|
+
readonly "tertiary-20": "--ramps-tertiary-20";
|
|
45
|
+
readonly "tertiary-30": "--ramps-tertiary-30";
|
|
46
|
+
readonly "tertiary-40": "--ramps-tertiary-40";
|
|
47
|
+
readonly "tertiary-50": "--ramps-tertiary-50";
|
|
48
|
+
readonly "tertiary-60": "--ramps-tertiary-60";
|
|
49
|
+
readonly "tertiary-70": "--ramps-tertiary-70";
|
|
50
|
+
readonly "tertiary-80": "--ramps-tertiary-80";
|
|
51
|
+
readonly "tertiary-90": "--ramps-tertiary-90";
|
|
52
|
+
readonly "tertiary-100": "--ramps-tertiary-100";
|
|
53
|
+
readonly "tertiary-110": "--ramps-tertiary-110";
|
|
54
|
+
readonly "tertiary-120": "--ramps-tertiary-120";
|
|
55
|
+
readonly "tertiary-130": "--ramps-tertiary-130";
|
|
56
|
+
readonly "tertiary-140": "--ramps-tertiary-140";
|
|
57
|
+
readonly "tertiary-150": "--ramps-tertiary-150";
|
|
58
|
+
readonly "grey-5": "--ramps-grey-5";
|
|
59
|
+
readonly "grey-10": "--ramps-grey-10";
|
|
60
|
+
readonly "grey-20": "--ramps-grey-20";
|
|
61
|
+
readonly "grey-30": "--ramps-grey-30";
|
|
62
|
+
readonly "grey-40": "--ramps-grey-40";
|
|
63
|
+
readonly "grey-50": "--ramps-grey-50";
|
|
64
|
+
readonly "grey-60": "--ramps-grey-60";
|
|
65
|
+
readonly "grey-70": "--ramps-grey-70";
|
|
66
|
+
readonly "grey-80": "--ramps-grey-80";
|
|
67
|
+
readonly "grey-90": "--ramps-grey-90";
|
|
68
|
+
readonly "grey-100": "--ramps-grey-100";
|
|
69
|
+
readonly "grey-110": "--ramps-grey-110";
|
|
70
|
+
readonly "grey-120": "--ramps-grey-120";
|
|
71
|
+
readonly "grey-130": "--ramps-grey-130";
|
|
72
|
+
readonly "grey-140": "--ramps-grey-140";
|
|
73
|
+
readonly "grey-150": "--ramps-grey-150";
|
|
74
|
+
readonly "grey2-50": "--ramps-grey2-50";
|
|
75
|
+
readonly "grey2-100": "--ramps-grey2-100";
|
|
76
|
+
readonly "grey2-200": "--ramps-grey2-200";
|
|
77
|
+
readonly "grey2-300": "--ramps-grey2-300";
|
|
78
|
+
readonly "grey2-400": "--ramps-grey2-400";
|
|
79
|
+
readonly "grey2-500": "--ramps-grey2-500";
|
|
80
|
+
readonly "grey2-600": "--ramps-grey2-600";
|
|
81
|
+
readonly "grey2-700": "--ramps-grey2-700";
|
|
82
|
+
readonly "grey2-800": "--ramps-grey2-800";
|
|
83
|
+
readonly "grey2-900": "--ramps-grey2-900";
|
|
84
|
+
readonly "grey2-950": "--ramps-grey2-950";
|
|
85
|
+
readonly "info-50": "--ramps-info-50";
|
|
86
|
+
readonly "info-100": "--ramps-info-100";
|
|
87
|
+
readonly "info-200": "--ramps-info-200";
|
|
88
|
+
readonly "info-300": "--ramps-info-300";
|
|
89
|
+
readonly "info-400": "--ramps-info-400";
|
|
90
|
+
readonly "info-500": "--ramps-info-500";
|
|
91
|
+
readonly "info-600": "--ramps-info-600";
|
|
92
|
+
readonly "info-700": "--ramps-info-700";
|
|
93
|
+
readonly "info-800": "--ramps-info-800";
|
|
94
|
+
readonly "info-900": "--ramps-info-900";
|
|
95
|
+
readonly "info-950": "--ramps-info-950";
|
|
96
|
+
readonly "success-50": "--ramps-success-50";
|
|
97
|
+
readonly "success-100": "--ramps-success-100";
|
|
98
|
+
readonly "success-200": "--ramps-success-200";
|
|
99
|
+
readonly "success-300": "--ramps-success-300";
|
|
100
|
+
readonly "success-400": "--ramps-success-400";
|
|
101
|
+
readonly "success-500": "--ramps-success-500";
|
|
102
|
+
readonly "success-600": "--ramps-success-600";
|
|
103
|
+
readonly "success-700": "--ramps-success-700";
|
|
104
|
+
readonly "success-800": "--ramps-success-800";
|
|
105
|
+
readonly "success-900": "--ramps-success-900";
|
|
106
|
+
readonly "success-950": "--ramps-success-950";
|
|
107
|
+
readonly "warning-50": "--ramps-warning-50";
|
|
108
|
+
readonly "warning-100": "--ramps-warning-100";
|
|
109
|
+
readonly "warning-200": "--ramps-warning-200";
|
|
110
|
+
readonly "warning-300": "--ramps-warning-300";
|
|
111
|
+
readonly "warning-400": "--ramps-warning-400";
|
|
112
|
+
readonly "warning-500": "--ramps-warning-500";
|
|
113
|
+
readonly "warning-600": "--ramps-warning-600";
|
|
114
|
+
readonly "warning-700": "--ramps-warning-700";
|
|
115
|
+
readonly "warning-800": "--ramps-warning-800";
|
|
116
|
+
readonly "warning-900": "--ramps-warning-900";
|
|
117
|
+
readonly "warning-950": "--ramps-warning-950";
|
|
118
|
+
readonly "error-50": "--ramps-error-50";
|
|
119
|
+
readonly "error-100": "--ramps-error-100";
|
|
120
|
+
readonly "error-200": "--ramps-error-200";
|
|
121
|
+
readonly "error-300": "--ramps-error-300";
|
|
122
|
+
readonly "error-400": "--ramps-error-400";
|
|
123
|
+
readonly "error-500": "--ramps-error-500";
|
|
124
|
+
readonly "error-600": "--ramps-error-600";
|
|
125
|
+
readonly "error-700": "--ramps-error-700";
|
|
126
|
+
readonly "error-800": "--ramps-error-800";
|
|
127
|
+
readonly "error-900": "--ramps-error-900";
|
|
128
|
+
readonly "error-950": "--ramps-error-950";
|
|
129
|
+
readonly primary: "--state-primary-default";
|
|
130
|
+
readonly "primary-hover": "--state-primary-hover";
|
|
131
|
+
readonly "primary-stroke": "--state-primary-stroke";
|
|
132
|
+
readonly "primary-hover-bg": "--state-primary-hover-bg";
|
|
133
|
+
readonly "primary-pressed": "--state-primary-pressed";
|
|
134
|
+
readonly "primary-active": "--state-primary-active";
|
|
135
|
+
readonly "primary-text-solid": "--state-primary-text-solid";
|
|
136
|
+
readonly "primary-text-outline": "--state-primary-text-outline";
|
|
137
|
+
readonly "primary-text-hover": "--state-primary-text-hover";
|
|
138
|
+
readonly "primary-text-pressed": "--state-primary-text-pressed";
|
|
139
|
+
readonly secondary: "--state-secondary-default";
|
|
140
|
+
readonly "secondary-hover": "--state-secondary-hover";
|
|
141
|
+
readonly "secondary-stroke": "--state-secondary-stroke";
|
|
142
|
+
readonly "secondary-hover-bg": "--state-secondary-hover-bg";
|
|
143
|
+
readonly "secondary-pressed": "--state-secondary-pressed";
|
|
144
|
+
readonly "secondary-active": "--state-secondary-active";
|
|
145
|
+
readonly "secondary-text-solid": "--state-secondary-text-solid";
|
|
146
|
+
readonly "secondary-text-outline": "--state-secondary-text-outline";
|
|
147
|
+
readonly "secondary-text-hover": "--state-secondary-text-hover";
|
|
148
|
+
readonly "secondary-text-pressed": "--state-secondary-text-pressed";
|
|
149
|
+
readonly tertiary: "--state-tertiary-default";
|
|
150
|
+
readonly "tertiary-hover": "--state-tertiary-hover";
|
|
151
|
+
readonly "tertiary-stroke": "--state-tertiary-stroke";
|
|
152
|
+
readonly "tertiary-hover-bg": "--state-tertiary-hover-bg";
|
|
153
|
+
readonly "tertiary-pressed": "--state-tertiary-pressed";
|
|
154
|
+
readonly "tertiary-active": "--state-tertiary-active";
|
|
155
|
+
readonly "tertiary-text-solid": "--state-tertiary-text-solid";
|
|
156
|
+
readonly "tertiary-text-outline": "--state-tertiary-text-outline";
|
|
157
|
+
readonly "tertiary-text-hover": "--state-tertiary-text-hover";
|
|
158
|
+
readonly "tertiary-text-pressed": "--state-tertiary-text-pressed";
|
|
159
|
+
readonly info: "--state-info-default";
|
|
160
|
+
readonly "info-hover": "--state-info-hover";
|
|
161
|
+
readonly "info-stroke": "--state-info-stroke";
|
|
162
|
+
readonly "info-hover-bg": "--state-info-hover-bg";
|
|
163
|
+
readonly "info-pressed": "--state-info-pressed";
|
|
164
|
+
readonly "info-active": "--state-info-active";
|
|
165
|
+
readonly "info-text-solid": "--state-info-text-solid";
|
|
166
|
+
readonly "info-text-outline": "--state-info-text-outline";
|
|
167
|
+
readonly "info-text-hover": "--state-info-text-hover";
|
|
168
|
+
readonly "info-text-pressed": "--state-info-text-pressed";
|
|
169
|
+
readonly success: "--state-success-default";
|
|
170
|
+
readonly "success-hover": "--state-success-hover";
|
|
171
|
+
readonly "success-stroke": "--state-success-stroke";
|
|
172
|
+
readonly "success-hover-bg": "--state-success-hover-bg";
|
|
173
|
+
readonly "success-pressed": "--state-success-pressed";
|
|
174
|
+
readonly "success-active": "--state-success-active";
|
|
175
|
+
readonly "success-text-solid": "--state-success-text-solid";
|
|
176
|
+
readonly "success-text-outline": "--state-success-text-outline";
|
|
177
|
+
readonly "success-text-hover": "--state-success-text-hover";
|
|
178
|
+
readonly "success-text-pressed": "--state-success-text-pressed";
|
|
179
|
+
readonly warning: "--state-warning-default";
|
|
180
|
+
readonly "warning-hover": "--state-warning-hover";
|
|
181
|
+
readonly "warning-stroke": "--state-warning-stroke";
|
|
182
|
+
readonly "warning-hover-bg": "--state-warning-hover-bg";
|
|
183
|
+
readonly "warning-pressed": "--state-warning-pressed";
|
|
184
|
+
readonly "warning-active": "--state-warning-active";
|
|
185
|
+
readonly "warning-text-solid": "--state-warning-text-solid";
|
|
186
|
+
readonly "warning-text-outline": "--state-warning-text-outline";
|
|
187
|
+
readonly "warning-text-hover": "--state-warning-text-hover";
|
|
188
|
+
readonly "warning-text-pressed": "--state-warning-text-pressed";
|
|
189
|
+
readonly error: "--state-error-default";
|
|
190
|
+
readonly "error-hover": "--state-error-hover";
|
|
191
|
+
readonly "error-stroke": "--state-error-stroke";
|
|
192
|
+
readonly "error-hover-bg": "--state-error-hover-bg";
|
|
193
|
+
readonly "error-pressed": "--state-error-pressed";
|
|
194
|
+
readonly "error-active": "--state-error-active";
|
|
195
|
+
readonly "error-text-solid": "--state-error-text-solid";
|
|
196
|
+
readonly "error-text-outline": "--state-error-text-outline";
|
|
197
|
+
readonly "error-text-hover": "--state-error-text-hover";
|
|
198
|
+
readonly "error-text-pressed": "--state-error-text-pressed";
|
|
199
|
+
readonly "disable-solid": "--state-disable-solid";
|
|
200
|
+
readonly "disable-outline": "--state-disable-outline";
|
|
194
201
|
readonly "text-black": "--text-black";
|
|
202
|
+
readonly "text-contrast-low": "--text-contrast-low";
|
|
203
|
+
readonly "text-contrast-medium": "--text-contrast-medium";
|
|
204
|
+
readonly "text-contrast-high": "--text-contrast-high";
|
|
205
|
+
readonly "text-contrast-max": "--text-contrast-max";
|
|
206
|
+
readonly "text-g-contrast-low": "--text-g-contrast-low";
|
|
207
|
+
readonly "text-g-contrast-medium": "--text-g-contrast-medium";
|
|
208
|
+
readonly "text-g-contrast-high": "--text-g-contrast-high";
|
|
195
209
|
readonly "text-dark": "--text-dark";
|
|
196
210
|
readonly "text-medium": "--text-medium";
|
|
197
211
|
readonly "text-light": "--text-light";
|
|
@@ -199,15 +213,15 @@ export declare const THEME_COLOR_KEYS: {
|
|
|
199
213
|
readonly "text-grey-medium": "--text-grey-medium";
|
|
200
214
|
readonly "text-grey-light": "--text-grey-light";
|
|
201
215
|
readonly "text-white": "--text-white";
|
|
202
|
-
readonly "input-default-text": "--input-
|
|
203
|
-
readonly "input-default-stroke": "--input-
|
|
204
|
-
readonly "input-filled-text": "--input-
|
|
205
|
-
readonly "input-active-stroke": "--input-
|
|
206
|
-
readonly "input-disable-text": "--input-
|
|
207
|
-
readonly "input-disable-stroke": "--input-
|
|
208
|
-
readonly "input-disable-bg": "--input-
|
|
209
|
-
readonly "input-label-bg": "--input-
|
|
210
|
-
readonly "input-error": "--input-
|
|
216
|
+
readonly "input-default-text": "--input-default-text";
|
|
217
|
+
readonly "input-default-stroke": "--input-default-stroke";
|
|
218
|
+
readonly "input-filled-text": "--input-filled-text";
|
|
219
|
+
readonly "input-active-stroke": "--input-active-stroke";
|
|
220
|
+
readonly "input-disable-text": "--input-disable-text";
|
|
221
|
+
readonly "input-disable-stroke": "--input-disable-stroke";
|
|
222
|
+
readonly "input-disable-bg": "--input-disable-bg";
|
|
223
|
+
readonly "input-label-bg": "--input-label-bg";
|
|
224
|
+
readonly "input-error": "--input-error";
|
|
211
225
|
readonly "function-default-solid": "--function-default-solid";
|
|
212
226
|
readonly "function-default-hover": "--function-default-hover";
|
|
213
227
|
readonly "function-default-hover-bg": "--function-default-hover-bg";
|
|
@@ -219,6 +233,28 @@ export declare const THEME_COLOR_KEYS: {
|
|
|
219
233
|
readonly "function-active-hover-bg": "--function-active-hover-bg";
|
|
220
234
|
readonly "function-active-stroke": "--function-active-stroke";
|
|
221
235
|
readonly "function-active-icon": "--function-active-icon";
|
|
236
|
+
readonly "modal-surface": "--modal-surface";
|
|
237
|
+
readonly "modal-highlight": "--modal-highlight";
|
|
238
|
+
readonly "modal-overlay": "--modal-overlay";
|
|
239
|
+
readonly "bg-bg1": "--bg-bg1";
|
|
240
|
+
readonly "bg-bg2": "--bg-bg2";
|
|
241
|
+
readonly "bg-bg3": "--bg-bg3";
|
|
242
|
+
readonly "bg-stroke1": "--bg-stroke1";
|
|
243
|
+
readonly "bg-stroke2": "--bg-stroke2";
|
|
244
|
+
readonly "state-primary-text-solid": "--state-primary-text-solid";
|
|
245
|
+
readonly "state-primary-text-hover": "--state-primary-text-hover";
|
|
246
|
+
readonly "state-secondary-text-solid": "--state-secondary-text-solid";
|
|
247
|
+
readonly "state-secondary-text-hover": "--state-secondary-text-hover";
|
|
248
|
+
readonly "state-tertiary-text-solid": "--state-tertiary-text-solid";
|
|
249
|
+
readonly "state-tertiary-text-hover": "--state-tertiary-text-hover";
|
|
250
|
+
readonly "state-info-text-solid": "--state-info-text-solid";
|
|
251
|
+
readonly "state-info-text-hover": "--state-info-text-hover";
|
|
252
|
+
readonly "state-success-text-solid": "--state-success-text-solid";
|
|
253
|
+
readonly "state-success-text-hover": "--state-success-text-hover";
|
|
254
|
+
readonly "state-warning-text-solid": "--state-warning-text-solid";
|
|
255
|
+
readonly "state-warning-text-hover": "--state-warning-text-hover";
|
|
256
|
+
readonly "state-error-text-solid": "--state-error-text-solid";
|
|
257
|
+
readonly "state-error-text-hover": "--state-error-text-hover";
|
|
222
258
|
readonly "base-bg": "--base-color-bg";
|
|
223
259
|
readonly "base-bg2": "--base-color-bg2";
|
|
224
260
|
readonly "base-bg3": "--base-color-bg3";
|
|
@@ -230,6 +266,54 @@ export declare const THEME_COLOR_KEYS: {
|
|
|
230
266
|
readonly "base-popup-foreground": "--base-color-popup-foreground";
|
|
231
267
|
readonly "common-white": "--common-white";
|
|
232
268
|
readonly "common-black": "--common-black";
|
|
269
|
+
readonly "brand-rvl-yellow": "--brand-rvl-yellow";
|
|
270
|
+
readonly "brand-rvl-grey": "--brand-rvl-grey";
|
|
271
|
+
readonly "others-1": "--others-1";
|
|
272
|
+
readonly "others-2": "--others-2";
|
|
273
|
+
readonly "others-3": "--others-3";
|
|
274
|
+
readonly "others-4": "--others-4";
|
|
275
|
+
readonly "others-5": "--others-5";
|
|
276
|
+
readonly "others-6": "--others-6";
|
|
277
|
+
readonly "others-7": "--others-7";
|
|
278
|
+
readonly "others-8": "--others-8";
|
|
279
|
+
readonly "others-9": "--others-9";
|
|
280
|
+
readonly "others-10": "--others-10";
|
|
281
|
+
readonly "others-11": "--others-11";
|
|
282
|
+
readonly "others-12": "--others-12";
|
|
283
|
+
readonly "others-13": "--others-13";
|
|
284
|
+
readonly "others-14": "--others-14";
|
|
285
|
+
readonly "others-15": "--others-15";
|
|
286
|
+
readonly "others-16": "--others-16";
|
|
287
|
+
readonly "others-17": "--others-17";
|
|
288
|
+
readonly "others-18": "--others-18";
|
|
289
|
+
readonly "others-19": "--others-19";
|
|
290
|
+
readonly "others-20": "--others-20";
|
|
291
|
+
readonly "others-21": "--others-21";
|
|
292
|
+
readonly "others-22": "--others-22";
|
|
293
|
+
readonly "others-23": "--others-23";
|
|
294
|
+
readonly "others-24": "--others-24";
|
|
295
|
+
readonly "others-25": "--others-25";
|
|
296
|
+
readonly "others-26": "--others-26";
|
|
297
|
+
readonly "others-27": "--others-27";
|
|
298
|
+
readonly "others-28": "--others-28";
|
|
299
|
+
readonly "others-29": "--others-29";
|
|
300
|
+
readonly "others-30": "--others-30";
|
|
301
|
+
readonly "others-31": "--others-31";
|
|
302
|
+
readonly "others-32": "--others-32";
|
|
303
|
+
readonly "others-33": "--others-33";
|
|
304
|
+
readonly "others-34": "--others-34";
|
|
305
|
+
readonly "others-35": "--others-35";
|
|
306
|
+
readonly "page-bg-main": "--page-bg-main";
|
|
307
|
+
readonly "page-bg-circle-top-g-in": "--page-bg-circle-top-g-in";
|
|
308
|
+
readonly "page-bg-circle-top-g-out": "--page-bg-circle-top-g-out";
|
|
309
|
+
readonly "page-bg-circle-bottom-g-in": "--page-bg-circle-bottom-g-in";
|
|
310
|
+
readonly "page-bg-circle-bottom-g-out": "--page-bg-circle-bottom-g-out";
|
|
311
|
+
readonly "modal-line": "--modal-line";
|
|
312
|
+
readonly "bg-bg4": "--bg-bg4";
|
|
313
|
+
readonly "bg-bg5": "--bg-bg5";
|
|
314
|
+
readonly "bg-stroke3": "--bg-stroke3";
|
|
315
|
+
readonly "bg-stroke4": "--bg-stroke4";
|
|
316
|
+
readonly "bg-stroke5": "--bg-stroke5";
|
|
233
317
|
readonly background: "--background";
|
|
234
318
|
readonly foreground: "--foreground";
|
|
235
319
|
readonly surface: "--surface";
|
|
@@ -243,72 +327,72 @@ export declare const THEME_COLOR_KEYS: {
|
|
|
243
327
|
readonly "error-foreground": "--error-foreground";
|
|
244
328
|
readonly "grey-foreground": "--grey-foreground";
|
|
245
329
|
readonly "grey2-foreground": "--grey2-foreground";
|
|
246
|
-
readonly "primary-transparent-8": "--
|
|
247
|
-
readonly "primary-transparent-12": "--
|
|
248
|
-
readonly "primary-transparent-16": "--
|
|
249
|
-
readonly "primary-transparent-24": "--
|
|
250
|
-
readonly "primary-transparent-32": "--
|
|
251
|
-
readonly "primary-transparent-48": "--
|
|
252
|
-
readonly "secondary-transparent-8": "--
|
|
253
|
-
readonly "secondary-transparent-12": "--
|
|
254
|
-
readonly "secondary-transparent-16": "--
|
|
255
|
-
readonly "secondary-transparent-24": "--
|
|
256
|
-
readonly "secondary-transparent-32": "--
|
|
257
|
-
readonly "secondary-transparent-48": "--
|
|
258
|
-
readonly "tertiary-transparent-8": "--
|
|
259
|
-
readonly "tertiary-transparent-12": "--
|
|
260
|
-
readonly "tertiary-transparent-16": "--
|
|
261
|
-
readonly "tertiary-transparent-24": "--
|
|
262
|
-
readonly "tertiary-transparent-32": "--
|
|
263
|
-
readonly "tertiary-transparent-48": "--
|
|
264
|
-
readonly "info-transparent-8": "--
|
|
265
|
-
readonly "info-transparent-12": "--
|
|
266
|
-
readonly "info-transparent-16": "--
|
|
267
|
-
readonly "info-transparent-24": "--
|
|
268
|
-
readonly "info-transparent-32": "--
|
|
269
|
-
readonly "info-transparent-48": "--
|
|
270
|
-
readonly "success-transparent-8": "--
|
|
271
|
-
readonly "success-transparent-12": "--
|
|
272
|
-
readonly "success-transparent-16": "--
|
|
273
|
-
readonly "success-transparent-24": "--
|
|
274
|
-
readonly "success-transparent-32": "--
|
|
275
|
-
readonly "success-transparent-48": "--
|
|
276
|
-
readonly "warning-transparent-8": "--
|
|
277
|
-
readonly "warning-transparent-12": "--
|
|
278
|
-
readonly "warning-transparent-16": "--
|
|
279
|
-
readonly "warning-transparent-24": "--
|
|
280
|
-
readonly "warning-transparent-32": "--
|
|
281
|
-
readonly "warning-transparent-48": "--
|
|
282
|
-
readonly "error-transparent-8": "--
|
|
283
|
-
readonly "error-transparent-12": "--
|
|
284
|
-
readonly "error-transparent-16": "--
|
|
285
|
-
readonly "error-transparent-24": "--
|
|
286
|
-
readonly "error-transparent-32": "--
|
|
287
|
-
readonly "error-transparent-48": "--
|
|
288
|
-
readonly "grey-transparent-8": "--
|
|
289
|
-
readonly "grey-transparent-12": "--
|
|
290
|
-
readonly "grey-transparent-16": "--
|
|
291
|
-
readonly "grey-transparent-24": "--
|
|
292
|
-
readonly "grey-transparent-32": "--
|
|
293
|
-
readonly "grey-transparent-48": "--
|
|
294
|
-
readonly "grey2-transparent-8": "--
|
|
295
|
-
readonly "grey2-transparent-12": "--
|
|
296
|
-
readonly "grey2-transparent-16": "--
|
|
297
|
-
readonly "grey2-transparent-24": "--
|
|
298
|
-
readonly "grey2-transparent-32": "--
|
|
299
|
-
readonly "grey2-transparent-48": "--
|
|
300
|
-
readonly "white-transparent-8": "--
|
|
301
|
-
readonly "white-transparent-12": "--
|
|
302
|
-
readonly "white-transparent-16": "--
|
|
303
|
-
readonly "white-transparent-24": "--
|
|
304
|
-
readonly "white-transparent-32": "--
|
|
305
|
-
readonly "white-transparent-48": "--
|
|
306
|
-
readonly "black-transparent-8": "--
|
|
307
|
-
readonly "black-transparent-12": "--
|
|
308
|
-
readonly "black-transparent-16": "--
|
|
309
|
-
readonly "black-transparent-24": "--
|
|
310
|
-
readonly "black-transparent-32": "--
|
|
311
|
-
readonly "black-transparent-48": "--
|
|
330
|
+
readonly "primary-transparent-8": "--transparent-primary-8";
|
|
331
|
+
readonly "primary-transparent-12": "--transparent-primary-12";
|
|
332
|
+
readonly "primary-transparent-16": "--transparent-primary-16";
|
|
333
|
+
readonly "primary-transparent-24": "--transparent-primary-24";
|
|
334
|
+
readonly "primary-transparent-32": "--transparent-primary-32";
|
|
335
|
+
readonly "primary-transparent-48": "--transparent-primary-48";
|
|
336
|
+
readonly "secondary-transparent-8": "--transparent-secondary-8";
|
|
337
|
+
readonly "secondary-transparent-12": "--transparent-secondary-12";
|
|
338
|
+
readonly "secondary-transparent-16": "--transparent-secondary-16";
|
|
339
|
+
readonly "secondary-transparent-24": "--transparent-secondary-24";
|
|
340
|
+
readonly "secondary-transparent-32": "--transparent-secondary-32";
|
|
341
|
+
readonly "secondary-transparent-48": "--transparent-secondary-48";
|
|
342
|
+
readonly "tertiary-transparent-8": "--transparent-tertiary-8";
|
|
343
|
+
readonly "tertiary-transparent-12": "--transparent-tertiary-12";
|
|
344
|
+
readonly "tertiary-transparent-16": "--transparent-tertiary-16";
|
|
345
|
+
readonly "tertiary-transparent-24": "--transparent-tertiary-24";
|
|
346
|
+
readonly "tertiary-transparent-32": "--transparent-tertiary-32";
|
|
347
|
+
readonly "tertiary-transparent-48": "--transparent-tertiary-48";
|
|
348
|
+
readonly "info-transparent-8": "--transparent-info-8";
|
|
349
|
+
readonly "info-transparent-12": "--transparent-info-12";
|
|
350
|
+
readonly "info-transparent-16": "--transparent-info-16";
|
|
351
|
+
readonly "info-transparent-24": "--transparent-info-24";
|
|
352
|
+
readonly "info-transparent-32": "--transparent-info-32";
|
|
353
|
+
readonly "info-transparent-48": "--transparent-info-48";
|
|
354
|
+
readonly "success-transparent-8": "--transparent-success-8";
|
|
355
|
+
readonly "success-transparent-12": "--transparent-success-12";
|
|
356
|
+
readonly "success-transparent-16": "--transparent-success-16";
|
|
357
|
+
readonly "success-transparent-24": "--transparent-success-24";
|
|
358
|
+
readonly "success-transparent-32": "--transparent-success-32";
|
|
359
|
+
readonly "success-transparent-48": "--transparent-success-48";
|
|
360
|
+
readonly "warning-transparent-8": "--transparent-warning-8";
|
|
361
|
+
readonly "warning-transparent-12": "--transparent-warning-12";
|
|
362
|
+
readonly "warning-transparent-16": "--transparent-warning-16";
|
|
363
|
+
readonly "warning-transparent-24": "--transparent-warning-24";
|
|
364
|
+
readonly "warning-transparent-32": "--transparent-warning-32";
|
|
365
|
+
readonly "warning-transparent-48": "--transparent-warning-48";
|
|
366
|
+
readonly "error-transparent-8": "--transparent-error-8";
|
|
367
|
+
readonly "error-transparent-12": "--transparent-error-12";
|
|
368
|
+
readonly "error-transparent-16": "--transparent-error-16";
|
|
369
|
+
readonly "error-transparent-24": "--transparent-error-24";
|
|
370
|
+
readonly "error-transparent-32": "--transparent-error-32";
|
|
371
|
+
readonly "error-transparent-48": "--transparent-error-48";
|
|
372
|
+
readonly "grey-transparent-8": "--transparent-grey-8";
|
|
373
|
+
readonly "grey-transparent-12": "--transparent-grey-12";
|
|
374
|
+
readonly "grey-transparent-16": "--transparent-grey-16";
|
|
375
|
+
readonly "grey-transparent-24": "--transparent-grey-24";
|
|
376
|
+
readonly "grey-transparent-32": "--transparent-grey-32";
|
|
377
|
+
readonly "grey-transparent-48": "--transparent-grey-48";
|
|
378
|
+
readonly "grey2-transparent-8": "--transparent-grey2-8";
|
|
379
|
+
readonly "grey2-transparent-12": "--transparent-grey2-12";
|
|
380
|
+
readonly "grey2-transparent-16": "--transparent-grey2-16";
|
|
381
|
+
readonly "grey2-transparent-24": "--transparent-grey2-24";
|
|
382
|
+
readonly "grey2-transparent-32": "--transparent-grey2-32";
|
|
383
|
+
readonly "grey2-transparent-48": "--transparent-grey2-48";
|
|
384
|
+
readonly "white-transparent-8": "--transparent-white-8";
|
|
385
|
+
readonly "white-transparent-12": "--transparent-white-12";
|
|
386
|
+
readonly "white-transparent-16": "--transparent-white-16";
|
|
387
|
+
readonly "white-transparent-24": "--transparent-white-24";
|
|
388
|
+
readonly "white-transparent-32": "--transparent-white-32";
|
|
389
|
+
readonly "white-transparent-48": "--transparent-white-48";
|
|
390
|
+
readonly "black-transparent-8": "--transparent-black-8";
|
|
391
|
+
readonly "black-transparent-12": "--transparent-black-12";
|
|
392
|
+
readonly "black-transparent-16": "--transparent-black-16";
|
|
393
|
+
readonly "black-transparent-24": "--transparent-black-24";
|
|
394
|
+
readonly "black-transparent-32": "--transparent-black-32";
|
|
395
|
+
readonly "black-transparent-48": "--transparent-black-48";
|
|
312
396
|
};
|
|
313
397
|
export type ThemeColorKey = keyof typeof THEME_COLOR_KEYS;
|
|
314
398
|
/**
|
|
@@ -317,7 +401,7 @@ export type ThemeColorKey = keyof typeof THEME_COLOR_KEYS;
|
|
|
317
401
|
*
|
|
318
402
|
* @example
|
|
319
403
|
* const primary = getThemeColor('primary');
|
|
320
|
-
* const hex = getThemeColor('--
|
|
404
|
+
* const hex = getThemeColor('--ramps-primary-100');
|
|
321
405
|
*/
|
|
322
406
|
export declare function getThemeColor(keyOrVar: ThemeColorKey | string, element?: HTMLElement | Document): string;
|
|
323
407
|
/**
|