@rovula/ui 0.0.80 → 0.0.81
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 +2 -1
- package/dist/esm/bundle.css +2 -1
- package/dist/src/theme/global.css +1853 -309
- package/package.json +4 -2
- package/src/components/Button/Button.tsx +7 -7
- package/src/theme/THEME_MAPPING.md +231 -0
- package/src/theme/global.css +2 -1
- package/src/theme/themes/skyller/baseline.css +6 -0
- package/src/theme/themes/skyller/color.css +79 -0
- package/src/theme/themes/skyller/components/action-button.css +81 -0
- package/src/theme/themes/skyller/palette.css +143 -0
- package/src/theme/themes/skyller/state.css +94 -0
- package/src/theme/themes/skyller/transparent.css +94 -0
- package/src/theme/themes/skyller/typography.css +30 -0
- package/src/theme/themes/variable.css +1057 -0
- package/src/theme/themes/xspector/color.css +50 -48
- package/src/theme/themes/xspector/palette.css +141 -121
- package/src/theme/themes/xspector/state.css +83 -78
- package/src/theme/themes/xspector/transparent.css +93 -68
|
@@ -1,53 +1,55 @@
|
|
|
1
|
+
:root[data-theme="xspector"] {
|
|
2
|
+
/* ------------------------------------------------------------------ */
|
|
3
|
+
/* Semantic Colors — from variable_lasted.css */
|
|
4
|
+
/* ------------------------------------------------------------------ */
|
|
1
5
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
--input-color-default-
|
|
5
|
-
--input-color-
|
|
6
|
-
--input-color-
|
|
7
|
-
--input-color-
|
|
8
|
-
--input-color-disable-
|
|
9
|
-
--input-color-disable-
|
|
10
|
-
--input-color-
|
|
11
|
-
--input-color-
|
|
12
|
-
--input-color-error: #ff4d35;
|
|
6
|
+
/* Input */
|
|
7
|
+
--input-color-default-text: var(--input-default-text-xspector);
|
|
8
|
+
--input-color-default-stroke: var(--input-default-stroke-xspector);
|
|
9
|
+
--input-color-filled-text: var(--input-filled-text-xspector);
|
|
10
|
+
--input-color-active-stroke: var(--input-active-stroke-xspector);
|
|
11
|
+
--input-color-disable-text: var(--input-disable-text-xspector);
|
|
12
|
+
--input-color-disable-stroke: var(--input-disable-stroke-xspector);
|
|
13
|
+
--input-color-disable-bg: var(--input-disable-bg-xspector);
|
|
14
|
+
--input-color-label-bg: var(--input-label-bg-xspector);
|
|
15
|
+
--input-color-error: var(--input-error-xspector);
|
|
13
16
|
|
|
14
17
|
/* Function button */
|
|
15
|
-
--function-default-solid:
|
|
16
|
-
--function-default-hover:
|
|
17
|
-
--function-default-hover-bg:
|
|
18
|
-
--function-default-stroke:
|
|
19
|
-
--function-default-icon:
|
|
20
|
-
--function-default-outline-icon:
|
|
21
|
-
--function-active-solid:
|
|
22
|
-
--function-active-hover:
|
|
23
|
-
--function-active-hover-bg:
|
|
24
|
-
--function-active-stroke:
|
|
25
|
-
--function-active-icon:
|
|
18
|
+
--function-default-solid: var(--function-default-solid-xspector);
|
|
19
|
+
--function-default-hover: var(--function-default-hover-xspector);
|
|
20
|
+
--function-default-hover-bg: var(--function-default-hover-bg-xspector);
|
|
21
|
+
--function-default-stroke: var(--function-default-stroke-xspector);
|
|
22
|
+
--function-default-icon: var(--function-default-icon-xspector);
|
|
23
|
+
--function-default-outline-icon: var(--function-default-outline-icon-xspector);
|
|
24
|
+
--function-active-solid: var(--function-active-solid-xspector);
|
|
25
|
+
--function-active-hover: var(--function-active-hover-xspector);
|
|
26
|
+
--function-active-hover-bg: var(--function-active-hover-bg-xspector);
|
|
27
|
+
--function-active-stroke: var(--function-active-stroke-xspector);
|
|
28
|
+
--function-active-icon: var(--function-active-icon-xspector);
|
|
26
29
|
|
|
27
|
-
|
|
28
|
-
--text-
|
|
29
|
-
--text-
|
|
30
|
-
--text-
|
|
31
|
-
--text-
|
|
32
|
-
--text-grey-
|
|
33
|
-
--text-
|
|
30
|
+
/* Text */
|
|
31
|
+
--text-black: var(--text-black-xspector);
|
|
32
|
+
--text-dark: var(--text-dark-xspector);
|
|
33
|
+
--text-medium: var(--text-medium-xspector);
|
|
34
|
+
--text-light: var(--text-light-xspector);
|
|
35
|
+
--text-grey-dark: var(--text-grey-dark-xspector);
|
|
36
|
+
--text-grey-medium: var(--text-grey-medium-xspector);
|
|
37
|
+
--text-grey-light: var(--text-grey-light-xspector);
|
|
38
|
+
--text-white: var(--text-white-xspector);
|
|
34
39
|
|
|
35
|
-
|
|
36
|
-
--base-color-
|
|
37
|
-
--base-color-
|
|
38
|
-
--base-color-
|
|
39
|
-
--base-color-
|
|
40
|
-
--base-color-
|
|
41
|
-
--base-color-popup
|
|
42
|
-
--base-color-popup-
|
|
43
|
-
--
|
|
44
|
-
--common-
|
|
40
|
+
/* Base */
|
|
41
|
+
--base-color-bg: var(--base-bg-bg1-xspector);
|
|
42
|
+
--base-color-bg2: var(--base-bg-bg2-xspector);
|
|
43
|
+
--base-color-bg3: var(--base-bg-bg3-xspector);
|
|
44
|
+
--base-color-workspace-stroke: var(--base-bg-stroke1-xspector);
|
|
45
|
+
--base-color-guideline-stroke: var(--base-bg-stroke2-xspector);
|
|
46
|
+
--base-color-popup: var(--base-modal-modal-xspector);
|
|
47
|
+
--base-color-popup-hightlight: var(--base-modal-modal-hightlight-xspector);
|
|
48
|
+
--base-color-popup-curtain: var(--base-modal-modal-curtain-xspector);
|
|
49
|
+
--common-white: var(--common-white-xspector);
|
|
50
|
+
--common-black: var(--common-black-xspector);
|
|
45
51
|
|
|
46
|
-
|
|
47
|
-
--dashboard-panel-bg-white: rgba(255 255 255 / 0.08);
|
|
48
|
-
--dashboard-panel-border: rgba(168 162 168 / 0.24);
|
|
49
|
-
|
|
50
|
-
/* ------- Addon base ---------- */
|
|
52
|
+
/* Addon */
|
|
51
53
|
--background: var(--base-color-bg);
|
|
52
54
|
--foreground: var(--common-white);
|
|
53
55
|
|
|
@@ -62,12 +64,12 @@
|
|
|
62
64
|
--grey2: var(--grey2-grey2-100);
|
|
63
65
|
|
|
64
66
|
--primary-foreground: var(--state-color-primary-text-solid);
|
|
65
|
-
--secondary-foreground:
|
|
67
|
+
--secondary-foreground: var(--state-color-secondary-text-solid);
|
|
66
68
|
--tertiary-foreground: var(--state-color-tertiary-text-solid);
|
|
67
69
|
--info-foreground: var(--state-color-info-text-solid);
|
|
68
|
-
--success-foreground:
|
|
69
|
-
--warning-foreground:
|
|
70
|
-
--error-foreground:
|
|
70
|
+
--success-foreground: var(--state-color-success-text-solid);
|
|
71
|
+
--warning-foreground: var(--state-color-warning-text-solid);
|
|
72
|
+
--error-foreground: var(--state-color-error-text-solid);
|
|
71
73
|
--grey-foreground: var(--common-black);
|
|
72
74
|
--grey2-foreground: var(--common-black);
|
|
73
75
|
|
|
@@ -1,122 +1,142 @@
|
|
|
1
|
+
:root[data-theme="xspector"] {
|
|
2
|
+
/* ------------------------------------------------------------------ */
|
|
3
|
+
/* Color Ramps — from variable_lasted.css */
|
|
4
|
+
/* ------------------------------------------------------------------ */
|
|
1
5
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
--primary-ramps-primary-10:
|
|
5
|
-
--primary-ramps-primary-20:
|
|
6
|
-
--primary-ramps-primary-30:
|
|
7
|
-
--primary-ramps-primary-40:
|
|
8
|
-
--primary-ramps-primary-50:
|
|
9
|
-
--primary-ramps-primary-60:
|
|
10
|
-
--primary-ramps-primary-70:
|
|
11
|
-
--primary-ramps-primary-80:
|
|
12
|
-
--primary-ramps-primary-90:
|
|
13
|
-
--primary-ramps-primary-100:
|
|
14
|
-
--primary-ramps-primary-110:
|
|
15
|
-
--primary-ramps-primary-120:
|
|
16
|
-
--primary-ramps-primary-130:
|
|
17
|
-
--primary-ramps-primary-140:
|
|
18
|
-
--primary-ramps-primary-150:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
--secondary-ramps-secondary-
|
|
22
|
-
--secondary-ramps-secondary-
|
|
23
|
-
--secondary-ramps-secondary-
|
|
24
|
-
--secondary-ramps-secondary-
|
|
25
|
-
--secondary-ramps-secondary-
|
|
26
|
-
--secondary-ramps-secondary-
|
|
27
|
-
--secondary-ramps-secondary-
|
|
28
|
-
--secondary-ramps-secondary-
|
|
29
|
-
--secondary-ramps-secondary-
|
|
30
|
-
--secondary-ramps-secondary-
|
|
31
|
-
--secondary-ramps-secondary-
|
|
32
|
-
--secondary-ramps-secondary-
|
|
33
|
-
--secondary-ramps-secondary-
|
|
34
|
-
--secondary-ramps-secondary-
|
|
35
|
-
--
|
|
36
|
-
--
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
--tertiary-ramps-tertiary-
|
|
40
|
-
--tertiary-ramps-tertiary-
|
|
41
|
-
--tertiary-ramps-tertiary-
|
|
42
|
-
--tertiary-ramps-tertiary-
|
|
43
|
-
--tertiary-ramps-tertiary-
|
|
44
|
-
--tertiary-ramps-tertiary-
|
|
45
|
-
--tertiary-ramps-tertiary-
|
|
46
|
-
--tertiary-ramps-tertiary-
|
|
47
|
-
--tertiary-ramps-tertiary-
|
|
48
|
-
--tertiary-ramps-tertiary-
|
|
49
|
-
--tertiary-ramps-tertiary-
|
|
50
|
-
--tertiary-ramps-tertiary-
|
|
51
|
-
--
|
|
52
|
-
--
|
|
53
|
-
--
|
|
54
|
-
--
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
--grey-grey-
|
|
58
|
-
--grey-grey-
|
|
59
|
-
--grey-grey-
|
|
60
|
-
--grey-grey-
|
|
61
|
-
--grey-grey-
|
|
62
|
-
--grey-grey-
|
|
63
|
-
--grey-grey-
|
|
64
|
-
--grey-grey-
|
|
65
|
-
--grey-grey-
|
|
66
|
-
--grey-grey-
|
|
67
|
-
--
|
|
68
|
-
--
|
|
69
|
-
--
|
|
70
|
-
--
|
|
71
|
-
--
|
|
72
|
-
--
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
--grey2-grey2-
|
|
76
|
-
--grey2-grey2-
|
|
77
|
-
--grey2-grey2-
|
|
78
|
-
--
|
|
79
|
-
--
|
|
80
|
-
--
|
|
81
|
-
--
|
|
82
|
-
--
|
|
83
|
-
--
|
|
84
|
-
--
|
|
85
|
-
--
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
--info-info-
|
|
89
|
-
--
|
|
90
|
-
--
|
|
91
|
-
--
|
|
92
|
-
--
|
|
93
|
-
--
|
|
94
|
-
--
|
|
95
|
-
--
|
|
96
|
-
--
|
|
97
|
-
--
|
|
98
|
-
--
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
--
|
|
102
|
-
--
|
|
103
|
-
--
|
|
104
|
-
--
|
|
105
|
-
--
|
|
106
|
-
--
|
|
107
|
-
--
|
|
108
|
-
--
|
|
109
|
-
--
|
|
110
|
-
--
|
|
111
|
-
--
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
--
|
|
115
|
-
--
|
|
116
|
-
--
|
|
117
|
-
--
|
|
118
|
-
--
|
|
119
|
-
--
|
|
120
|
-
--
|
|
121
|
-
--
|
|
122
|
-
|
|
6
|
+
/* Primary */
|
|
7
|
+
--primary-ramps-primary-5: var(--ramps-primary-5-xspector);
|
|
8
|
+
--primary-ramps-primary-10: var(--ramps-primary-10-xspector);
|
|
9
|
+
--primary-ramps-primary-20: var(--ramps-primary-20-xspector);
|
|
10
|
+
--primary-ramps-primary-30: var(--ramps-primary-30-xspector);
|
|
11
|
+
--primary-ramps-primary-40: var(--ramps-primary-40-xspector);
|
|
12
|
+
--primary-ramps-primary-50: var(--ramps-primary-50-xspector);
|
|
13
|
+
--primary-ramps-primary-60: var(--ramps-primary-60-xspector);
|
|
14
|
+
--primary-ramps-primary-70: var(--ramps-primary-70-xspector);
|
|
15
|
+
--primary-ramps-primary-80: var(--ramps-primary-80-xspector);
|
|
16
|
+
--primary-ramps-primary-90: var(--ramps-primary-90-xspector);
|
|
17
|
+
--primary-ramps-primary-100: var(--ramps-primary-100-xspector);
|
|
18
|
+
--primary-ramps-primary-110: var(--ramps-primary-110-xspector);
|
|
19
|
+
--primary-ramps-primary-120: var(--ramps-primary-120-xspector);
|
|
20
|
+
--primary-ramps-primary-130: var(--ramps-primary-130-xspector);
|
|
21
|
+
--primary-ramps-primary-140: var(--ramps-primary-140-xspector);
|
|
22
|
+
--primary-ramps-primary-150: var(--ramps-primary-150-xspector);
|
|
23
|
+
|
|
24
|
+
/* Secondary */
|
|
25
|
+
--secondary-ramps-secondary-5: var(--ramps-secondary-5-xspector);
|
|
26
|
+
--secondary-ramps-secondary-10: var(--ramps-secondary-10-xspector);
|
|
27
|
+
--secondary-ramps-secondary-20: var(--ramps-secondary-20-xspector);
|
|
28
|
+
--secondary-ramps-secondary-30: var(--ramps-secondary-30-xspector);
|
|
29
|
+
--secondary-ramps-secondary-40: var(--ramps-secondary-40-xspector);
|
|
30
|
+
--secondary-ramps-secondary-50: var(--ramps-secondary-50-xspector);
|
|
31
|
+
--secondary-ramps-secondary-60: var(--ramps-secondary-60-xspector);
|
|
32
|
+
--secondary-ramps-secondary-70: var(--ramps-secondary-70-xspector);
|
|
33
|
+
--secondary-ramps-secondary-80: var(--ramps-secondary-80-xspector);
|
|
34
|
+
--secondary-ramps-secondary-90: var(--ramps-secondary-90-xspector);
|
|
35
|
+
--secondary-ramps-secondary-100: var(--ramps-secondary-100-xspector);
|
|
36
|
+
--secondary-ramps-secondary-110: var(--ramps-secondary-110-xspector);
|
|
37
|
+
--secondary-ramps-secondary-120: var(--ramps-secondary-120-xspector);
|
|
38
|
+
--secondary-ramps-secondary-130: var(--ramps-secondary-130-xspector);
|
|
39
|
+
--secondary-ramps-secondary-140: var(--ramps-secondary-140-xspector);
|
|
40
|
+
--secondary-ramps-secondary-150: var(--ramps-secondary-150-xspector);
|
|
41
|
+
|
|
42
|
+
/* Tertiary */
|
|
43
|
+
--tertiary-ramps-tertiary-5: var(--ramps-tertiary-5-xspector);
|
|
44
|
+
--tertiary-ramps-tertiary-10: var(--ramps-tertiary-10-xspector);
|
|
45
|
+
--tertiary-ramps-tertiary-20: var(--ramps-tertiary-20-xspector);
|
|
46
|
+
--tertiary-ramps-tertiary-30: var(--ramps-tertiary-30-xspector);
|
|
47
|
+
--tertiary-ramps-tertiary-40: var(--ramps-tertiary-40-xspector);
|
|
48
|
+
--tertiary-ramps-tertiary-50: var(--ramps-tertiary-50-xspector);
|
|
49
|
+
--tertiary-ramps-tertiary-60: var(--ramps-tertiary-60-xspector);
|
|
50
|
+
--tertiary-ramps-tertiary-70: var(--ramps-tertiary-70-xspector);
|
|
51
|
+
--tertiary-ramps-tertiary-80: var(--ramps-tertiary-80-xspector);
|
|
52
|
+
--tertiary-ramps-tertiary-90: var(--ramps-tertiary-90-xspector);
|
|
53
|
+
--tertiary-ramps-tertiary-100: var(--ramps-tertiary-100-xspector);
|
|
54
|
+
--tertiary-ramps-tertiary-110: var(--ramps-tertiary-110-xspector);
|
|
55
|
+
--tertiary-ramps-tertiary-120: var(--ramps-tertiary-120-xspector);
|
|
56
|
+
--tertiary-ramps-tertiary-130: var(--ramps-tertiary-130-xspector);
|
|
57
|
+
--tertiary-ramps-tertiary-140: var(--ramps-tertiary-140-xspector);
|
|
58
|
+
--tertiary-ramps-tertiary-150: var(--ramps-tertiary-150-xspector);
|
|
59
|
+
|
|
60
|
+
/* Grey */
|
|
61
|
+
--grey-grey-5: var(--ramps-grey-5-xspector);
|
|
62
|
+
--grey-grey-10: var(--ramps-grey-10-xspector);
|
|
63
|
+
--grey-grey-20: var(--ramps-grey-20-xspector);
|
|
64
|
+
--grey-grey-30: var(--ramps-grey-30-xspector);
|
|
65
|
+
--grey-grey-40: var(--ramps-grey-40-xspector);
|
|
66
|
+
--grey-grey-50: var(--ramps-grey-50-xspector);
|
|
67
|
+
--grey-grey-60: var(--ramps-grey-60-xspector);
|
|
68
|
+
--grey-grey-70: var(--ramps-grey-70-xspector);
|
|
69
|
+
--grey-grey-80: var(--ramps-grey-80-xspector);
|
|
70
|
+
--grey-grey-90: var(--ramps-grey-90-xspector);
|
|
71
|
+
--grey-grey-100: var(--ramps-grey-100-xspector);
|
|
72
|
+
--grey-grey-110: var(--ramps-grey-110-xspector);
|
|
73
|
+
--grey-grey-120: var(--ramps-grey-120-xspector);
|
|
74
|
+
--grey-grey-130: var(--ramps-grey-130-xspector);
|
|
75
|
+
--grey-grey-140: var(--ramps-grey-140-xspector);
|
|
76
|
+
--grey-grey-150: var(--ramps-grey-150-xspector);
|
|
77
|
+
|
|
78
|
+
/* Grey2 */
|
|
79
|
+
--grey2-grey2-50: var(--ramps-grey2-50-xspector);
|
|
80
|
+
--grey2-grey2-100: var(--ramps-grey2-100-xspector);
|
|
81
|
+
--grey2-grey2-200: var(--ramps-grey2-200-xspector);
|
|
82
|
+
--grey2-grey2-300: var(--ramps-grey2-300-xspector);
|
|
83
|
+
--grey2-grey2-400: var(--ramps-grey2-400-xspector);
|
|
84
|
+
--grey2-grey2-500: var(--ramps-grey2-500-xspector);
|
|
85
|
+
--grey2-grey2-600: var(--ramps-grey2-600-xspector);
|
|
86
|
+
--grey2-grey2-700: var(--ramps-grey2-700-xspector);
|
|
87
|
+
--grey2-grey2-800: var(--ramps-grey2-800-xspector);
|
|
88
|
+
--grey2-grey2-900: var(--ramps-grey2-900-xspector);
|
|
89
|
+
--grey2-grey2-950: var(--ramps-grey2-950-xspector);
|
|
90
|
+
|
|
91
|
+
/* Info */
|
|
92
|
+
--info-info-50: var(--ramps-info-50-xspector);
|
|
93
|
+
--info-info-100: var(--ramps-info-100-xspector);
|
|
94
|
+
--info-info-200: var(--ramps-info-200-xspector);
|
|
95
|
+
--info-info-300: var(--ramps-info-300-xspector);
|
|
96
|
+
--info-info-400: var(--ramps-info-400-xspector);
|
|
97
|
+
--info-info-500: var(--ramps-info-500-xspector);
|
|
98
|
+
--info-info-600: var(--ramps-info-600-xspector);
|
|
99
|
+
--info-info-700: var(--ramps-info-700-xspector);
|
|
100
|
+
--info-info-800: var(--ramps-info-800-xspector);
|
|
101
|
+
--info-info-900: var(--ramps-info-900-xspector);
|
|
102
|
+
--info-info-950: var(--ramps-info-950-xspector);
|
|
103
|
+
|
|
104
|
+
/* Success */
|
|
105
|
+
--success-success-50: var(--ramps-success-50-xspector);
|
|
106
|
+
--success-success-100: var(--ramps-success-100-xspector);
|
|
107
|
+
--success-success-200: var(--ramps-success-200-xspector);
|
|
108
|
+
--success-success-300: var(--ramps-success-300-xspector);
|
|
109
|
+
--success-success-400: var(--ramps-success-400-xspector);
|
|
110
|
+
--success-success-500: var(--ramps-success-500-xspector);
|
|
111
|
+
--success-success-600: var(--ramps-success-600-xspector);
|
|
112
|
+
--success-success-700: var(--ramps-success-700-xspector);
|
|
113
|
+
--success-success-800: var(--ramps-success-800-xspector);
|
|
114
|
+
--success-success-900: var(--ramps-success-900-xspector);
|
|
115
|
+
--success-success-950: var(--ramps-success-950-xspector);
|
|
116
|
+
|
|
117
|
+
/* Warning */
|
|
118
|
+
--warning-warning-50: var(--ramps-warning-50-xspector);
|
|
119
|
+
--warning-warning-100: var(--ramps-warning-100-xspector);
|
|
120
|
+
--warning-warning-200: var(--ramps-warning-200-xspector);
|
|
121
|
+
--warning-warning-300: var(--ramps-warning-300-xspector);
|
|
122
|
+
--warning-warning-400: var(--ramps-warning-400-xspector);
|
|
123
|
+
--warning-warning-500: var(--ramps-warning-500-xspector);
|
|
124
|
+
--warning-warning-600: var(--ramps-warning-600-xspector);
|
|
125
|
+
--warning-warning-700: var(--ramps-warning-700-xspector);
|
|
126
|
+
--warning-warning-800: var(--ramps-warning-800-xspector);
|
|
127
|
+
--warning-warning-900: var(--ramps-warning-900-xspector);
|
|
128
|
+
--warning-warning-950: var(--ramps-warning-950-xspector);
|
|
129
|
+
|
|
130
|
+
/* Error */
|
|
131
|
+
--error-error-50: var(--ramps-error-50-xspector);
|
|
132
|
+
--error-error-100: var(--ramps-error-100-xspector);
|
|
133
|
+
--error-error-200: var(--ramps-error-200-xspector);
|
|
134
|
+
--error-error-300: var(--ramps-error-300-xspector);
|
|
135
|
+
--error-error-400: var(--ramps-error-400-xspector);
|
|
136
|
+
--error-error-500: var(--ramps-error-500-xspector);
|
|
137
|
+
--error-error-600: var(--ramps-error-600-xspector);
|
|
138
|
+
--error-error-700: var(--ramps-error-700-xspector);
|
|
139
|
+
--error-error-800: var(--ramps-error-800-xspector);
|
|
140
|
+
--error-error-900: var(--ramps-error-900-xspector);
|
|
141
|
+
--error-error-950: var(--ramps-error-950-xspector);
|
|
142
|
+
}
|
|
@@ -1,89 +1,94 @@
|
|
|
1
|
-
|
|
2
|
-
:root[data-theme="xspector"]{
|
|
1
|
+
:root[data-theme="xspector"] {
|
|
3
2
|
/* ------------------------------------------------------------------ */
|
|
4
|
-
/* State Tokens
|
|
3
|
+
/* State Tokens — from variable_lasted.css */
|
|
5
4
|
/* ------------------------------------------------------------------ */
|
|
6
|
-
/*
|
|
7
|
-
/* States: [default, hover, pressed, disabled] */
|
|
5
|
+
/* Maps --state-color-* (code) → --state-*-xspector (Figma export) */
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
--state-color-primary-
|
|
11
|
-
--state-color-primary-
|
|
12
|
-
--state-color-primary-
|
|
13
|
-
--state-color-primary-
|
|
14
|
-
--state-color-primary-
|
|
15
|
-
--state-color-primary-
|
|
16
|
-
--state-color-primary-text-
|
|
17
|
-
--state-color-primary-text-
|
|
18
|
-
--state-color-primary-text-
|
|
7
|
+
/* Primary */
|
|
8
|
+
--state-color-primary-default: var(--state-primary-default-xspector);
|
|
9
|
+
--state-color-primary-hover: var(--state-primary-hover-xspector);
|
|
10
|
+
--state-color-primary-stroke: var(--state-primary-stroke-xspector);
|
|
11
|
+
--state-color-primary-hover-bg: var(--state-primary-hover-bg-xspector);
|
|
12
|
+
--state-color-primary-pressed: var(--state-primary-pressed-xspector);
|
|
13
|
+
--state-color-primary-active: var(--state-primary-active-xspector);
|
|
14
|
+
--state-color-primary-text-solid: var(--state-primary-text-solid-xspector);
|
|
15
|
+
--state-color-primary-text-outline: var(--state-primary-text-outline-xspector);
|
|
16
|
+
--state-color-primary-text-hover: var(--state-primary-text-hover-xspector);
|
|
17
|
+
--state-color-primary-text-pressed: var(--state-primary-text-pressed-xspector);
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
--state-color-secondary-
|
|
22
|
-
--state-color-secondary-
|
|
23
|
-
--state-color-secondary-
|
|
24
|
-
--state-color-secondary-
|
|
25
|
-
--state-color-secondary-
|
|
26
|
-
--state-color-secondary-
|
|
27
|
-
--state-color-secondary-text-
|
|
28
|
-
--state-color-secondary-text-
|
|
29
|
-
--state-color-secondary-text-
|
|
19
|
+
/* Secondary */
|
|
20
|
+
--state-color-secondary-default: var(--state-secondary-default-xspector);
|
|
21
|
+
--state-color-secondary-hover: var(--state-secondary-hover-xspector);
|
|
22
|
+
--state-color-secondary-stroke: var(--state-secondary-stroke-xspector);
|
|
23
|
+
--state-color-secondary-hover-bg: var(--state-secondary-hover-bg-xspector);
|
|
24
|
+
--state-color-secondary-pressed: var(--state-secondary-pressed-xspector);
|
|
25
|
+
--state-color-secondary-active: var(--state-secondary-active-xspector);
|
|
26
|
+
--state-color-secondary-text-solid: var(--state-secondary-text-solid-xspector);
|
|
27
|
+
--state-color-secondary-text-outline: var(--state-secondary-text-outline-xspector);
|
|
28
|
+
--state-color-secondary-text-hover: var(--state-secondary-text-hover-xspector);
|
|
29
|
+
--state-color-secondary-text-pressed: var(--state-secondary-text-pressed-xspector);
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
--state-color-tertiary-
|
|
33
|
-
--state-color-tertiary-
|
|
34
|
-
--state-color-tertiary-
|
|
35
|
-
--state-color-tertiary-
|
|
36
|
-
--state-color-tertiary-
|
|
37
|
-
--state-color-tertiary-
|
|
38
|
-
--state-color-tertiary-text-
|
|
39
|
-
--state-color-tertiary-text-
|
|
40
|
-
--state-color-tertiary-text-
|
|
31
|
+
/* Tertiary — note: variable_lasted uses state-tertiery (typo) */
|
|
32
|
+
--state-color-tertiary-default: var(--state-tertiery-default-xspector);
|
|
33
|
+
--state-color-tertiary-hover: var(--state-tertiery-hover-xspector);
|
|
34
|
+
--state-color-tertiary-stroke: var(--state-tertiery-stroke-xspector);
|
|
35
|
+
--state-color-tertiary-hover-bg: var(--state-tertiery-hover-bg-xspector);
|
|
36
|
+
--state-color-tertiary-pressed: var(--state-tertiery-pressed-xspector);
|
|
37
|
+
--state-color-tertiary-active: var(--state-tertiery-active-xspector);
|
|
38
|
+
--state-color-tertiary-text-solid: var(--state-tertiery-text-solid-xspector);
|
|
39
|
+
--state-color-tertiary-text-outline: var(--state-tertiery-text-outline-xspector);
|
|
40
|
+
--state-color-tertiary-text-hover: var(--state-tertiery-text-hover-xspector);
|
|
41
|
+
--state-color-tertiary-text-pressed: var(--state-tertiery-text-pressed-xspector);
|
|
41
42
|
|
|
42
|
-
|
|
43
|
-
--state-color-info-
|
|
44
|
-
--state-color-info-
|
|
45
|
-
--state-color-info-
|
|
46
|
-
--state-color-info-
|
|
47
|
-
--state-color-info-
|
|
48
|
-
--state-color-info-
|
|
49
|
-
--state-color-info-text-
|
|
50
|
-
--state-color-info-text-
|
|
51
|
-
--state-color-info-text-
|
|
43
|
+
/* Info */
|
|
44
|
+
--state-color-info-default: var(--state-info-default-xspector);
|
|
45
|
+
--state-color-info-hover: var(--state-info-hover-xspector);
|
|
46
|
+
--state-color-info-stroke: var(--state-info-stroke-xspector);
|
|
47
|
+
--state-color-info-hover-bg: var(--state-info-hover-bg-xspector);
|
|
48
|
+
--state-color-info-pressed: var(--state-info-pressed-xspector);
|
|
49
|
+
--state-color-info-active: var(--state-info-active-xspector);
|
|
50
|
+
--state-color-info-text-solid: var(--state-info-text-solid-xspector);
|
|
51
|
+
--state-color-info-text-outline: var(--state-info-text-outline-xspector);
|
|
52
|
+
--state-color-info-text-hover: var(--state-info-text-hover-xspector);
|
|
53
|
+
--state-color-info-text-pressed: var(--state-info-text-pressed-xspector);
|
|
52
54
|
|
|
53
|
-
|
|
54
|
-
--state-color-success-
|
|
55
|
-
--state-color-success-
|
|
56
|
-
--state-color-success-
|
|
57
|
-
--state-color-success-
|
|
58
|
-
--state-color-success-
|
|
59
|
-
--state-color-success-
|
|
60
|
-
--state-color-success-text-
|
|
61
|
-
--state-color-success-text-
|
|
62
|
-
--state-color-success-text-
|
|
55
|
+
/* Success */
|
|
56
|
+
--state-color-success-default: var(--state-success-default-xspector);
|
|
57
|
+
--state-color-success-hover: var(--state-success-hover-xspector);
|
|
58
|
+
--state-color-success-stroke: var(--state-success-stroke-xspector);
|
|
59
|
+
--state-color-success-hover-bg: var(--state-success-hover-bg-xspector);
|
|
60
|
+
--state-color-success-pressed: var(--state-success-pressed-xspector);
|
|
61
|
+
--state-color-success-active: var(--state-success-active-xspector);
|
|
62
|
+
--state-color-success-text-solid: var(--state-success-text-solid-xspector);
|
|
63
|
+
--state-color-success-text-outline: var(--state-success-text-outline-xspector);
|
|
64
|
+
--state-color-success-text-hover: var(--state-success-text-hover-xspector);
|
|
65
|
+
--state-color-success-text-pressed: var(--state-success-text-pressed-xspector);
|
|
63
66
|
|
|
64
|
-
|
|
65
|
-
--state-color-warning-
|
|
66
|
-
--state-color-warning-
|
|
67
|
-
--state-color-warning-
|
|
68
|
-
--state-color-warning-
|
|
69
|
-
--state-color-warning-
|
|
70
|
-
--state-color-warning-
|
|
71
|
-
--state-color-warning-text-
|
|
72
|
-
--state-color-warning-text-
|
|
73
|
-
--state-color-warning-text-
|
|
67
|
+
/* Warning */
|
|
68
|
+
--state-color-warning-default: var(--state-warning-default-xspector);
|
|
69
|
+
--state-color-warning-hover: var(--state-warning-hover-xspector);
|
|
70
|
+
--state-color-warning-stroke: var(--state-warning-stroke-xspector);
|
|
71
|
+
--state-color-warning-hover-bg: var(--state-warning-hover-bg-xspector);
|
|
72
|
+
--state-color-warning-pressed: var(--state-warning-pressed-xspector);
|
|
73
|
+
--state-color-warning-active: var(--state-warning-active-xspector);
|
|
74
|
+
--state-color-warning-text-solid: var(--state-warning-text-solid-xspector);
|
|
75
|
+
--state-color-warning-text-outline: var(--state-warning-text-outline-xspector);
|
|
76
|
+
--state-color-warning-text-hover: var(--state-warning-text-hover-xspector);
|
|
77
|
+
--state-color-warning-text-pressed: var(--state-warning-text-pressed-xspector);
|
|
74
78
|
|
|
75
|
-
|
|
76
|
-
--state-color-error-
|
|
77
|
-
--state-color-error-
|
|
78
|
-
--state-color-error-
|
|
79
|
-
--state-color-error-
|
|
80
|
-
--state-color-error-
|
|
81
|
-
--state-color-error-
|
|
82
|
-
--state-color-error-text-
|
|
83
|
-
--state-color-error-text-
|
|
84
|
-
--state-color-error-text-
|
|
79
|
+
/* Error */
|
|
80
|
+
--state-color-error-default: var(--state-error-default-xspector);
|
|
81
|
+
--state-color-error-hover: var(--state-error-hover-xspector);
|
|
82
|
+
--state-color-error-stroke: var(--state-error-stroke-xspector);
|
|
83
|
+
--state-color-error-hover-bg: var(--state-error-hover-bg-xspector);
|
|
84
|
+
--state-color-error-pressed: var(--state-error-pressed-xspector);
|
|
85
|
+
--state-color-error-active: var(--state-error-active-xspector);
|
|
86
|
+
--state-color-error-text-solid: var(--state-error-text-solid-xspector);
|
|
87
|
+
--state-color-error-text-outline: var(--state-error-text-outline-xspector);
|
|
88
|
+
--state-color-error-text-hover: var(--state-error-text-hover-xspector);
|
|
89
|
+
--state-color-error-text-pressed: var(--state-error-text-pressed-xspector);
|
|
85
90
|
|
|
86
|
-
|
|
87
|
-
--state-color-disable-
|
|
91
|
+
/* Disable */
|
|
92
|
+
--state-color-disable-solid: var(--state-disable-solid-xspector);
|
|
93
|
+
--state-color-disable-outline: var(--state-disable-outline-xspector);
|
|
88
94
|
}
|
|
89
|
-
|