@rovula/ui 0.1.4 → 0.1.6
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 +57 -15
- package/dist/cjs/bundle.js +5 -5
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Text/Text.d.ts +25 -1
- package/dist/cjs/types/components/Text/Text.stories.d.ts +1 -1
- package/dist/cjs/types/utils/colors.d.ts +1 -1
- package/dist/components/Avatar/Avatar.styles.js +2 -2
- package/dist/components/Button/Buttons.stories.js +1 -1
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/components/Dropdown/Dropdown.js +2 -2
- package/dist/components/DropdownMenu/DropdownMenu.js +4 -4
- package/dist/components/Footer/Footer.js +1 -1
- package/dist/components/Input/Input.styles.js +2 -2
- package/dist/components/InputFilter/InputFilter.js +2 -2
- package/dist/components/Label/Label.styles.js +4 -4
- package/dist/components/Menu/Menu.js +2 -2
- package/dist/components/Navbar/Navbar.js +1 -1
- package/dist/components/PasswordInput/PasswordInput.js +2 -2
- package/dist/components/PasswordInput/PasswordInput.stories.js +1 -1
- package/dist/components/Tabs/Tabs.js +1 -1
- package/dist/components/Text/Text.js +11 -1
- package/dist/components/Text/Text.stories.js +6 -6
- package/dist/components/TextArea/TextArea.styles.js +6 -6
- package/dist/components/TextInput/TextInput.stories.js +1 -1
- package/dist/components/TextInput/TextInput.styles.js +22 -22
- package/dist/components/Toast/Toast.js +2 -2
- package/dist/esm/bundle.css +57 -15
- package/dist/esm/bundle.js +5 -5
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Text/Text.d.ts +25 -1
- package/dist/esm/types/components/Text/Text.stories.d.ts +1 -1
- package/dist/esm/types/utils/colors.d.ts +1 -1
- package/dist/index.d.ts +26 -2
- package/dist/src/theme/global.css +169 -103
- package/dist/utils/colors.js +1 -1
- package/package.json +1 -1
- package/src/components/Avatar/Avatar.styles.ts +2 -2
- package/src/components/Button/Buttons.stories.tsx +2 -2
- package/src/components/Calendar/Calendar.tsx +1 -1
- package/src/components/Dropdown/Dropdown.tsx +2 -2
- package/src/components/DropdownMenu/DropdownMenu.tsx +6 -6
- package/src/components/Footer/Footer.tsx +1 -1
- package/src/components/Input/Input.styles.tsx +2 -2
- package/src/components/InputFilter/InputFilter.tsx +2 -2
- package/src/components/Label/Label.styles.ts +4 -4
- package/src/components/Menu/Menu.tsx +2 -2
- package/src/components/Navbar/Navbar.tsx +1 -1
- package/src/components/PasswordInput/PasswordInput.stories.tsx +1 -1
- package/src/components/PasswordInput/PasswordInput.tsx +2 -2
- package/src/components/Tabs/Tabs.tsx +1 -1
- package/src/components/Text/Text.stories.tsx +6 -6
- package/src/components/Text/Text.tsx +36 -1
- package/src/components/TextArea/TextArea.styles.ts +6 -6
- package/src/components/TextInput/TextInput.stories.tsx +3 -1
- package/src/components/TextInput/TextInput.styles.ts +31 -34
- package/src/components/Toast/Toast.tsx +2 -2
- package/src/theme/THEME_MAPPING.md +5 -5
- package/src/theme/global.css +1 -1
- package/src/theme/main-preset.js +49 -0
- package/src/theme/plugins/utilities/typography.js +40 -6
- package/src/theme/presets/colors.js +1 -1
- package/src/theme/themes/skyller/color.css +1 -1
- package/src/theme/themes/skyller/state.css +11 -11
- package/src/theme/themes/variable.css +78 -63
- package/src/theme/themes/xspector/color.css +1 -1
- package/src/theme/themes/xspector/state.css +11 -11
- package/src/theme/tokens/color.css +1 -1
- package/src/utils/colors.ts +1 -1
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
const plugin = require("tailwindcss/plugin");
|
|
2
2
|
|
|
3
|
+
const deprecated = {
|
|
4
|
+
"typography-subtitile1": "typography-subtitle1",
|
|
5
|
+
"typography-subtitile2": "typography-subtitle2",
|
|
6
|
+
"typography-subtitile3": "typography-subtitle3",
|
|
7
|
+
"typography-subtitile4": "typography-subtitle4",
|
|
8
|
+
"typography-subtitile5": "typography-subtitle5",
|
|
9
|
+
"typography-subtitile6": "typography-subtitle6",
|
|
10
|
+
};
|
|
11
|
+
|
|
3
12
|
module.exports = plugin(function ({ addUtilities }) {
|
|
13
|
+
Object.entries(deprecated).forEach(([oldClass, newClass]) => {
|
|
14
|
+
console.warn(
|
|
15
|
+
`[Rovula UI] "${oldClass}" is deprecated. Use "${newClass}" instead.`,
|
|
16
|
+
);
|
|
17
|
+
});
|
|
18
|
+
|
|
4
19
|
addUtilities({
|
|
5
20
|
".typography-h1": {
|
|
6
21
|
"@apply text-h1": {},
|
|
@@ -20,23 +35,42 @@ module.exports = plugin(function ({ addUtilities }) {
|
|
|
20
35
|
".typography-h6": {
|
|
21
36
|
"@apply text-h6": {},
|
|
22
37
|
},
|
|
38
|
+
".typography-subtitle1": {
|
|
39
|
+
"@apply text-subtitle1": {},
|
|
40
|
+
},
|
|
41
|
+
".typography-subtitle2": {
|
|
42
|
+
"@apply text-subtitle2": {},
|
|
43
|
+
},
|
|
44
|
+
".typography-subtitle3": {
|
|
45
|
+
"@apply text-subtitle3": {},
|
|
46
|
+
},
|
|
47
|
+
".typography-subtitle4": {
|
|
48
|
+
"@apply text-subtitle4": {},
|
|
49
|
+
},
|
|
50
|
+
".typography-subtitle5": {
|
|
51
|
+
"@apply text-subtitle5": {},
|
|
52
|
+
},
|
|
53
|
+
".typography-subtitle6": {
|
|
54
|
+
"@apply text-subtitle6": {},
|
|
55
|
+
},
|
|
56
|
+
// Deprecated aliases, kept for backward compatibility.
|
|
23
57
|
".typography-subtitile1": {
|
|
24
|
-
"@apply text-
|
|
58
|
+
"@apply text-subtitle1": {},
|
|
25
59
|
},
|
|
26
60
|
".typography-subtitile2": {
|
|
27
|
-
"@apply text-
|
|
61
|
+
"@apply text-subtitle2": {},
|
|
28
62
|
},
|
|
29
63
|
".typography-subtitile3": {
|
|
30
|
-
"@apply text-
|
|
64
|
+
"@apply text-subtitle3": {},
|
|
31
65
|
},
|
|
32
66
|
".typography-subtitile4": {
|
|
33
|
-
"@apply text-
|
|
67
|
+
"@apply text-subtitle4": {},
|
|
34
68
|
},
|
|
35
69
|
".typography-subtitile5": {
|
|
36
|
-
"@apply text-
|
|
70
|
+
"@apply text-subtitle5": {},
|
|
37
71
|
},
|
|
38
72
|
".typography-subtitile6": {
|
|
39
|
-
"@apply text-
|
|
73
|
+
"@apply text-subtitle6": {},
|
|
40
74
|
},
|
|
41
75
|
".typography-body1": {
|
|
42
76
|
"@apply text-body1": {},
|
|
@@ -94,7 +94,7 @@ module.exports = {
|
|
|
94
94
|
"base-bg2": withColorMixin("--base-color-bg2"),
|
|
95
95
|
"base-bg3": withColorMixin("--base-color-bg3"),
|
|
96
96
|
"base-popup": withColorMixin("--base-color-popup"),
|
|
97
|
-
"base-popup-highlight": withColorMixin("--base-color-popup-
|
|
97
|
+
"base-popup-highlight": withColorMixin("--base-color-popup-highlight"),
|
|
98
98
|
"base-popup-curtain": withColorMixin("--base-color-popup-curtain"),
|
|
99
99
|
"base-popup-foreground": withColorMixin(
|
|
100
100
|
"--base-color-popup-foreground"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--base-color-workspace-stroke: var(--base-bg-stroke1-skyller);
|
|
45
45
|
--base-color-guideline-stroke: var(--base-bg-stroke2-skyller);
|
|
46
46
|
--base-color-popup: var(--base-modal-modal-skyller);
|
|
47
|
-
--base-color-popup-
|
|
47
|
+
--base-color-popup-highlight: var(--base-modal-modal-highlight-skyller);
|
|
48
48
|
--base-color-popup-curtain: var(--base-modal-modal-curtain-skyller);
|
|
49
49
|
--common-white: var(--common-white-skyller);
|
|
50
50
|
--common-black: var(--common-black-skyller);
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
--state-color-secondary-text-hover: var(--state-secondary-text-hover-skyller);
|
|
29
29
|
--state-color-secondary-text-pressed: var(--state-secondary-text-pressed-skyller);
|
|
30
30
|
|
|
31
|
-
/* Tertiary
|
|
32
|
-
--state-color-tertiary-default: var(--state-
|
|
33
|
-
--state-color-tertiary-hover: var(--state-
|
|
34
|
-
--state-color-tertiary-stroke: var(--state-
|
|
35
|
-
--state-color-tertiary-hover-bg: var(--state-
|
|
36
|
-
--state-color-tertiary-pressed: var(--state-
|
|
37
|
-
--state-color-tertiary-active: var(--state-
|
|
38
|
-
--state-color-tertiary-text-solid: var(--state-
|
|
39
|
-
--state-color-tertiary-text-outline: var(--state-
|
|
40
|
-
--state-color-tertiary-text-hover: var(--state-
|
|
41
|
-
--state-color-tertiary-text-pressed: var(--state-
|
|
31
|
+
/* Tertiary */
|
|
32
|
+
--state-color-tertiary-default: var(--state-tertiary-default-skyller);
|
|
33
|
+
--state-color-tertiary-hover: var(--state-tertiary-hover-skyller);
|
|
34
|
+
--state-color-tertiary-stroke: var(--state-tertiary-stroke-skyller);
|
|
35
|
+
--state-color-tertiary-hover-bg: var(--state-tertiary-hover-bg-skyller);
|
|
36
|
+
--state-color-tertiary-pressed: var(--state-tertiary-pressed-skyller);
|
|
37
|
+
--state-color-tertiary-active: var(--state-tertiary-active-skyller);
|
|
38
|
+
--state-color-tertiary-text-solid: var(--state-tertiary-text-solid-skyller);
|
|
39
|
+
--state-color-tertiary-text-outline: var(--state-tertiary-text-outline-skyller);
|
|
40
|
+
--state-color-tertiary-text-hover: var(--state-tertiary-text-hover-skyller);
|
|
41
|
+
--state-color-tertiary-text-pressed: var(--state-tertiary-text-pressed-skyller);
|
|
42
42
|
|
|
43
43
|
/* Info */
|
|
44
44
|
--state-color-info-default: var(--state-info-default-skyller);
|
|
@@ -15,36 +15,36 @@
|
|
|
15
15
|
--brand-columbia-blue-xspector: #adcad6;
|
|
16
16
|
--brand-columbia-blue-report-xspector-light-mode: #adcad6;
|
|
17
17
|
--brand-columbia-blue-skyller: #0891b2;
|
|
18
|
-
--brand-
|
|
19
|
-
--brand-
|
|
20
|
-
--brand-
|
|
18
|
+
--brand-background-xspector: #1e3249;
|
|
19
|
+
--brand-background-report-xspector-light-mode: #1e3249;
|
|
20
|
+
--brand-background-skyller: #60a5fa;
|
|
21
21
|
--brand-lemon-glacier-xspector: #f5ff00;
|
|
22
22
|
--brand-lemon-glacier-report-xspector-light-mode: #f5ff00;
|
|
23
23
|
--brand-lemon-glacier-skyller: #fde68a;
|
|
24
24
|
--text-black-xspector: #000000;
|
|
25
25
|
--text-black-report-xspector-light-mode: #000000;
|
|
26
26
|
--text-black-skyller: #000000;
|
|
27
|
-
--text-
|
|
28
|
-
--text-
|
|
29
|
-
--text-
|
|
30
|
-
--text-medium-xspector: #637381;
|
|
31
|
-
--text-medium-report-xspector-light-mode: #4b5b6d;
|
|
32
|
-
--text-medium-skyller: #737373;
|
|
33
|
-
--text-
|
|
34
|
-
--text-
|
|
35
|
-
--text-
|
|
36
|
-
--text-
|
|
37
|
-
--text-
|
|
38
|
-
--text-
|
|
39
|
-
--text-
|
|
40
|
-
--text-
|
|
41
|
-
--text-
|
|
42
|
-
--text-
|
|
43
|
-
--text-
|
|
44
|
-
--text-
|
|
45
|
-
--text-
|
|
46
|
-
--text-
|
|
47
|
-
--text-
|
|
27
|
+
--text-contrast-low-xspector: #212b36;
|
|
28
|
+
--text-contrast-low-report-xspector-light-mode: #18283a;
|
|
29
|
+
--text-contrast-low-skyller: #a3a3a3;
|
|
30
|
+
--text-contrast-medium-xspector: #637381;
|
|
31
|
+
--text-contrast-medium-report-xspector-light-mode: #4b5b6d;
|
|
32
|
+
--text-contrast-medium-skyller: #737373;
|
|
33
|
+
--text-contrast-high-xspector: #919eab;
|
|
34
|
+
--text-contrast-high-report-xspector-light-mode: #8e98a4;
|
|
35
|
+
--text-contrast-high-skyller: #171717;
|
|
36
|
+
--text-g-contrast-low-xspector: #7e7e7e;
|
|
37
|
+
--text-g-contrast-low-report-xspector-light-mode: #4f4f4f;
|
|
38
|
+
--text-g-contrast-low-skyller: #a3a3a3;
|
|
39
|
+
--text-g-contrast-medium-xspector: #aaaaaa;
|
|
40
|
+
--text-g-contrast-medium-report-xspector-light-mode: #7e7e7e;
|
|
41
|
+
--text-g-contrast-medium-skyller: #737373;
|
|
42
|
+
--text-g-contrast-high-xspector: #dfe3e8;
|
|
43
|
+
--text-g-contrast-high-report-xspector-light-mode: #9e9e9e;
|
|
44
|
+
--text-g-contrast-high-skyller: #171717;
|
|
45
|
+
--text-contrast-max-xspector: #ffffff;
|
|
46
|
+
--text-contrast-max-report-xspector-light-mode: #4f4f4f;
|
|
47
|
+
--text-contrast-max-skyller: #171717;
|
|
48
48
|
--state-primary-default-xspector: #b1a400;
|
|
49
49
|
--state-primary-default-report-xspector-light-mode: #1e3249;
|
|
50
50
|
--state-primary-default-skyller: #2563eb;
|
|
@@ -105,36 +105,36 @@
|
|
|
105
105
|
--state-secondary-text-pressed-xspector: #c5c5c5;
|
|
106
106
|
--state-secondary-text-pressed-report-xspector-light-mode: #6f6700;
|
|
107
107
|
--state-secondary-text-pressed-skyller: #1e40af;
|
|
108
|
-
--state-
|
|
109
|
-
--state-
|
|
110
|
-
--state-
|
|
111
|
-
--state-
|
|
112
|
-
--state-
|
|
113
|
-
--state-
|
|
114
|
-
--state-
|
|
115
|
-
--state-
|
|
116
|
-
--state-
|
|
117
|
-
--state-
|
|
118
|
-
--state-
|
|
119
|
-
--state-
|
|
120
|
-
--state-
|
|
121
|
-
--state-
|
|
122
|
-
--state-
|
|
123
|
-
--state-
|
|
124
|
-
--state-
|
|
125
|
-
--state-
|
|
126
|
-
--state-
|
|
127
|
-
--state-
|
|
128
|
-
--state-
|
|
129
|
-
--state-
|
|
130
|
-
--state-
|
|
131
|
-
--state-
|
|
132
|
-
--state-
|
|
133
|
-
--state-
|
|
134
|
-
--state-
|
|
135
|
-
--state-
|
|
136
|
-
--state-
|
|
137
|
-
--state-
|
|
108
|
+
--state-tertiary-default-xspector: #8aa2ab;
|
|
109
|
+
--state-tertiary-default-report-xspector-light-mode: #4f4f4f;
|
|
110
|
+
--state-tertiary-default-skyller: #0891b2;
|
|
111
|
+
--state-tertiary-hover-xspector: #adcad6;
|
|
112
|
+
--state-tertiary-hover-report-xspector-light-mode: #6f6f6f;
|
|
113
|
+
--state-tertiary-hover-skyller: #52b2c9;
|
|
114
|
+
--state-tertiary-stroke-xspector: rgba(138 162 171 / 0.48);
|
|
115
|
+
--state-tertiary-stroke-report-xspector-light-mode: rgba(79 79 79 / 0.48);
|
|
116
|
+
--state-tertiary-stroke-skyller: rgba(8 145 178 / 0.48);
|
|
117
|
+
--state-tertiary-hover-bg-xspector: rgba(173 202 214 / 0.08);
|
|
118
|
+
--state-tertiary-hover-bg-report-xspector-light-mode: rgba(158 158 158 / 0.08);
|
|
119
|
+
--state-tertiary-hover-bg-skyller: rgba(82 178 201 / 0.08);
|
|
120
|
+
--state-tertiary-pressed-xspector: #57656b;
|
|
121
|
+
--state-tertiary-pressed-report-xspector-light-mode: #b1b1b1;
|
|
122
|
+
--state-tertiary-pressed-skyller: #06667d;
|
|
123
|
+
--state-tertiary-active-xspector: #adcad6;
|
|
124
|
+
--state-tertiary-active-report-xspector-light-mode: #6f6f6f;
|
|
125
|
+
--state-tertiary-active-skyller: #044959;
|
|
126
|
+
--state-tertiary-text-solid-xspector: #212b36;
|
|
127
|
+
--state-tertiary-text-solid-report-xspector-light-mode: #ffffff;
|
|
128
|
+
--state-tertiary-text-solid-skyller: #ffffff;
|
|
129
|
+
--state-tertiary-text-outline-xspector: #8aa2ab;
|
|
130
|
+
--state-tertiary-text-outline-report-xspector-light-mode: #4f4f4f;
|
|
131
|
+
--state-tertiary-text-outline-skyller: #0891b2;
|
|
132
|
+
--state-tertiary-text-hover-xspector: #adcad6;
|
|
133
|
+
--state-tertiary-text-hover-report-xspector-light-mode: #6f6f6f;
|
|
134
|
+
--state-tertiary-text-hover-skyller: #52b2c9;
|
|
135
|
+
--state-tertiary-text-pressed-xspector: #57656b;
|
|
136
|
+
--state-tertiary-text-pressed-report-xspector-light-mode: #b1b1b1;
|
|
137
|
+
--state-tertiary-text-pressed-skyller: #06667d;
|
|
138
138
|
--state-info-default-xspector: #1b7df5;
|
|
139
139
|
--state-info-default-report-xspector-light-mode: #1b7df5;
|
|
140
140
|
--state-info-default-skyller: #2563eb;
|
|
@@ -819,16 +819,16 @@
|
|
|
819
819
|
--base-modal-modal-xspector: #2d2e30;
|
|
820
820
|
--base-modal-modal-report-xspector-light-mode: #ffffff;
|
|
821
821
|
--base-modal-modal-skyller: #ffffff;
|
|
822
|
-
--base-modal-modal-
|
|
823
|
-
--base-modal-modal-
|
|
824
|
-
--base-modal-modal-
|
|
822
|
+
--base-modal-modal-highlight-xspector: #343638;
|
|
823
|
+
--base-modal-modal-highlight-report-xspector-light-mode: #f5f5f5;
|
|
824
|
+
--base-modal-modal-highlight-skyller: #f5f5f5;
|
|
825
825
|
--base-modal-modal-curtain-xspector: rgba(11 10 10 / 0.64);
|
|
826
826
|
--base-modal-modal-curtain-report-xspector-light-mode: rgba(0 0 0 / 0.64);
|
|
827
827
|
--base-modal-modal-curtain-skyller: rgba(0 0 0 / 0.64);
|
|
828
|
-
--base-bg-bg1-xspector: #
|
|
828
|
+
--base-bg-bg1-xspector: #030c15;
|
|
829
829
|
--base-bg-bg1-report-xspector-light-mode: #ffffff;
|
|
830
|
-
--base-bg-bg1-skyller: #
|
|
831
|
-
--base-bg-bg2-xspector: #
|
|
830
|
+
--base-bg-bg1-skyller: #2563eb;
|
|
831
|
+
--base-bg-bg2-xspector: #051627;
|
|
832
832
|
--base-bg-bg2-report-xspector-light-mode: #f5f5f5;
|
|
833
833
|
--base-bg-bg2-skyller: #fafafa;
|
|
834
834
|
--base-bg-bg3-xspector: #000000;
|
|
@@ -1017,9 +1017,24 @@
|
|
|
1017
1017
|
--others-35-xspector: #56d364;
|
|
1018
1018
|
--others-35-report-xspector-light-mode: #56d364;
|
|
1019
1019
|
--others-35-skyller: #56d364;
|
|
1020
|
-
--
|
|
1021
|
-
--
|
|
1022
|
-
--
|
|
1020
|
+
--page-bg-main-bg-xspector: #091d33;
|
|
1021
|
+
--page-bg-main-bg-report-xspector-light-mode: #ffffff;
|
|
1022
|
+
--page-bg-main-bg-skyller: #ffffff;
|
|
1023
|
+
--page-bg-circle-top-g-in-xspector: #003d6c;
|
|
1024
|
+
--page-bg-circle-top-g-in-report-xspector-light-mode: #adcad6;
|
|
1025
|
+
--page-bg-circle-top-g-in-skyller: #cfe4fd;
|
|
1026
|
+
--page-bg-circle-top-g-out-xspector: rgba(9 29 51 / 0);
|
|
1027
|
+
--page-bg-circle-top-g-out-report-xspector-light-mode: rgba(255 255 255 / 0);
|
|
1028
|
+
--page-bg-circle-top-g-out-skyller: rgba(255 255 255 / 0);
|
|
1029
|
+
--page-bg-circle-bottom-g-in-xspector: #003d6c;
|
|
1030
|
+
--page-bg-circle-bottom-g-in-report-xspector-light-mode: #adcad6;
|
|
1031
|
+
--page-bg-circle-bottom-g-in-skyller: #bed0f9;
|
|
1032
|
+
--page-bg-circle-bottom-g-out-xspector: rgba(9 29 51 / 0);
|
|
1033
|
+
--page-bg-circle-bottom-g-out-report-xspector-light-mode: rgba(255 255 255 / 0);
|
|
1034
|
+
--page-bg-circle-bottom-g-out-skyller: rgba(255 255 255 / 0);
|
|
1035
|
+
--text-white-xspector: #ffffff;
|
|
1036
|
+
--text-white-report-xspector-light-mode: #ffffff;
|
|
1037
|
+
--text-white-skyller: #ffffff;
|
|
1023
1038
|
|
|
1024
1039
|
/* BUTTON RADIUS */
|
|
1025
1040
|
--button-l-round: 8px;
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--base-color-workspace-stroke: var(--base-bg-stroke1-xspector);
|
|
45
45
|
--base-color-guideline-stroke: var(--base-bg-stroke2-xspector);
|
|
46
46
|
--base-color-popup: var(--base-modal-modal-xspector);
|
|
47
|
-
--base-color-popup-
|
|
47
|
+
--base-color-popup-highlight: var(--base-modal-modal-highlight-xspector);
|
|
48
48
|
--base-color-popup-curtain: var(--base-modal-modal-curtain-xspector);
|
|
49
49
|
--common-white: var(--common-white-xspector);
|
|
50
50
|
--common-black: var(--common-black-xspector);
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
--state-color-secondary-text-hover: var(--state-secondary-text-hover-xspector);
|
|
29
29
|
--state-color-secondary-text-pressed: var(--state-secondary-text-pressed-xspector);
|
|
30
30
|
|
|
31
|
-
/* Tertiary
|
|
32
|
-
--state-color-tertiary-default: var(--state-
|
|
33
|
-
--state-color-tertiary-hover: var(--state-
|
|
34
|
-
--state-color-tertiary-stroke: var(--state-
|
|
35
|
-
--state-color-tertiary-hover-bg: var(--state-
|
|
36
|
-
--state-color-tertiary-pressed: var(--state-
|
|
37
|
-
--state-color-tertiary-active: var(--state-
|
|
38
|
-
--state-color-tertiary-text-solid: var(--state-
|
|
39
|
-
--state-color-tertiary-text-outline: var(--state-
|
|
40
|
-
--state-color-tertiary-text-hover: var(--state-
|
|
41
|
-
--state-color-tertiary-text-pressed: var(--state-
|
|
31
|
+
/* Tertiary */
|
|
32
|
+
--state-color-tertiary-default: var(--state-tertiary-default-xspector);
|
|
33
|
+
--state-color-tertiary-hover: var(--state-tertiary-hover-xspector);
|
|
34
|
+
--state-color-tertiary-stroke: var(--state-tertiary-stroke-xspector);
|
|
35
|
+
--state-color-tertiary-hover-bg: var(--state-tertiary-hover-bg-xspector);
|
|
36
|
+
--state-color-tertiary-pressed: var(--state-tertiary-pressed-xspector);
|
|
37
|
+
--state-color-tertiary-active: var(--state-tertiary-active-xspector);
|
|
38
|
+
--state-color-tertiary-text-solid: var(--state-tertiary-text-solid-xspector);
|
|
39
|
+
--state-color-tertiary-text-outline: var(--state-tertiary-text-outline-xspector);
|
|
40
|
+
--state-color-tertiary-text-hover: var(--state-tertiary-text-hover-xspector);
|
|
41
|
+
--state-color-tertiary-text-pressed: var(--state-tertiary-text-pressed-xspector);
|
|
42
42
|
|
|
43
43
|
/* Info */
|
|
44
44
|
--state-color-info-default: var(--state-info-default-xspector);
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
--base-color-workspace-stroke: #e2e2e2;
|
|
40
40
|
--base-color-guideline-stroke: #c5c5c5;
|
|
41
41
|
--base-color-popup: #ffffff;
|
|
42
|
-
--base-color-popup-
|
|
42
|
+
--base-color-popup-highlight: #343638;
|
|
43
43
|
--base-color-popup-curtain: rgba(0 0 0 / 0.6);
|
|
44
44
|
--common-white: #ffffff;
|
|
45
45
|
--common-black: #000000;
|
package/src/utils/colors.ts
CHANGED
|
@@ -243,7 +243,7 @@ export const THEME_COLOR_KEYS = {
|
|
|
243
243
|
"base-workspace-stroke": "--base-color-workspace-stroke",
|
|
244
244
|
"base-guideline-stroke": "--base-color-guideline-stroke",
|
|
245
245
|
"base-popup": "--base-color-popup",
|
|
246
|
-
"base-popup-highlight": "--base-color-popup-
|
|
246
|
+
"base-popup-highlight": "--base-color-popup-highlight",
|
|
247
247
|
"base-popup-curtain": "--base-color-popup-curtain",
|
|
248
248
|
"base-popup-foreground": "--base-color-popup-foreground",
|
|
249
249
|
/* ----- Common ----- */
|