@code-coaching/vuetiful 0.4.1 → 0.5.0
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/types/components/molecules/VDrawer.vue.d.ts +0 -18
- package/dist/types/services/drawer.service.d.ts +2 -3
- package/dist/vuetiful.es.mjs +22 -22
- package/dist/vuetiful.umd.js +9 -9
- package/package.json +2 -1
- package/src/assets/main.css +6 -6
- package/src/components/molecules/VDrawer.vue +7 -13
- package/src/env.d.ts +4 -4
- package/src/services/drawer.service.ts +15 -12
- package/src/styles/core.css +49 -49
- package/src/styles/elements/alerts.css +13 -13
- package/src/styles/elements/badges.css +24 -24
- package/src/styles/elements/breadcrumbs.css +19 -19
- package/src/styles/elements/buttons.css +86 -86
- package/src/styles/elements/cards.css +22 -22
- package/src/styles/elements/chips.css +17 -17
- package/src/styles/elements/forms.css +237 -236
- package/src/styles/elements/lists.css +39 -39
- package/src/styles/elements/logo-clouds.css +21 -21
- package/src/styles/elements/modals.css +3 -3
- package/src/styles/elements/placeholders.css +10 -10
- package/src/styles/elements/popups.css +7 -7
- package/src/styles/elements/tables.css +73 -73
- package/src/styles/elements.css +13 -13
- package/src/styles/highlight-js.css +33 -33
- package/src/styles/typography.css +97 -97
- package/src/styles/variants.css +145 -145
- package/src/themes/theme-rocket.css +104 -104
- package/src/themes/theme-sahara.css +111 -111
- package/src/themes/theme-seafoam.css +110 -109
- package/src/themes/theme-seasonal.css +101 -101
- package/src/themes/theme-skeleton.css +102 -102
- package/src/themes/theme-vintage.css +109 -109
- package/src/themes/theme-vuetiful-0.0.1.css +110 -110
- package/src/types/index.ts +1 -1
- package/src/types/tailwind.ts +21 -2
- package/src/utils/code-block/highlight.service.test.ts +1 -1
- package/src/utils/index.test.ts +1 -1
- package/src/utils/platform/platform.service.ts +3 -5
- package/src/utils/theme/theme.service.test.ts +2 -3
package/src/styles/variants.css
CHANGED
|
@@ -2,155 +2,155 @@
|
|
|
2
2
|
/* A canned set of reusabled variant styles. */
|
|
3
3
|
|
|
4
4
|
@layer components {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
5
|
+
/* Outline -- supports ringed and host variants */
|
|
6
|
+
.variant-outline-primary {
|
|
7
|
+
@apply ring-[1px] ring-inset ring-primary-500 dark:ring-primary-500;
|
|
8
|
+
}
|
|
9
|
+
.variant-outline-secondary {
|
|
10
|
+
@apply ring-[1px] ring-inset ring-secondary-500 dark:ring-secondary-500;
|
|
11
|
+
}
|
|
12
|
+
.variant-outline-tertiary {
|
|
13
|
+
@apply ring-[1px] ring-inset ring-tertiary-500 dark:ring-tertiary-500;
|
|
14
|
+
}
|
|
15
|
+
.variant-outline-success {
|
|
16
|
+
@apply ring-[1px] ring-inset ring-success-500 dark:ring-success-500;
|
|
17
|
+
}
|
|
18
|
+
.variant-outline-warning {
|
|
19
|
+
@apply ring-[1px] ring-inset ring-warning-500 dark:ring-warning-500;
|
|
20
|
+
}
|
|
21
|
+
.variant-outline-error {
|
|
22
|
+
@apply ring-[1px] ring-inset ring-error-500 dark:ring-error-500;
|
|
23
|
+
}
|
|
24
|
+
.variant-outline,
|
|
25
|
+
.variant-outline-surface {
|
|
26
|
+
@apply ring-[1px] ring-inset ring-surface-500 dark:ring-surface-500;
|
|
27
|
+
}
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
/* ------------------------ */
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
31
|
+
/* Filled */
|
|
32
|
+
.variant-filled {
|
|
33
|
+
@apply bg-surface-900-50-token text-surface-50-900-token;
|
|
34
|
+
}
|
|
35
|
+
.variant-filled-primary {
|
|
36
|
+
@apply bg-primary-500 text-on-primary-token dark:bg-primary-500 dark:text-on-primary-token;
|
|
37
|
+
}
|
|
38
|
+
.variant-filled-secondary {
|
|
39
|
+
@apply bg-secondary-500 text-on-secondary-token dark:bg-secondary-500 dark:text-on-secondary-token;
|
|
40
|
+
}
|
|
41
|
+
.variant-filled-tertiary {
|
|
42
|
+
@apply bg-tertiary-500 text-on-tertiary-token dark:bg-tertiary-500 dark:text-on-tertiary-token;
|
|
43
|
+
}
|
|
44
|
+
.variant-filled-success {
|
|
45
|
+
@apply bg-success-500 text-on-success-token dark:bg-success-500 dark:text-on-success-token;
|
|
46
|
+
}
|
|
47
|
+
.variant-filled-warning {
|
|
48
|
+
@apply bg-warning-500 text-on-warning-token dark:bg-warning-500 dark:text-on-warning-token;
|
|
49
|
+
}
|
|
50
|
+
.variant-filled-error {
|
|
51
|
+
@apply bg-error-500 text-on-error-token dark:bg-error-500 dark:text-on-error-token;
|
|
52
|
+
}
|
|
53
|
+
.variant-filled-surface {
|
|
54
|
+
@apply bg-surface-400-500-token text-on-surface-token dark:text-on-surface-token;
|
|
55
|
+
}
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
57
|
+
/* Ringed */
|
|
58
|
+
.variant-ringed {
|
|
59
|
+
@apply variant-outline bg-transparent dark:bg-transparent;
|
|
60
|
+
}
|
|
61
|
+
.variant-ringed-primary {
|
|
62
|
+
@apply variant-outline-primary bg-transparent dark:bg-transparent;
|
|
63
|
+
}
|
|
64
|
+
.variant-ringed-secondary {
|
|
65
|
+
@apply variant-outline-secondary bg-transparent dark:bg-transparent;
|
|
66
|
+
}
|
|
67
|
+
.variant-ringed-tertiary {
|
|
68
|
+
@apply variant-outline-tertiary bg-transparent dark:bg-transparent;
|
|
69
|
+
}
|
|
70
|
+
.variant-ringed-success {
|
|
71
|
+
@apply variant-outline-success bg-transparent dark:bg-transparent;
|
|
72
|
+
}
|
|
73
|
+
.variant-ringed-warning {
|
|
74
|
+
@apply variant-outline-warning bg-transparent dark:bg-transparent;
|
|
75
|
+
}
|
|
76
|
+
.variant-ringed-error {
|
|
77
|
+
@apply variant-outline-error bg-transparent dark:bg-transparent;
|
|
78
|
+
}
|
|
79
|
+
.variant-ringed-surface {
|
|
80
|
+
@apply variant-outline-surface bg-transparent dark:bg-transparent;
|
|
81
|
+
}
|
|
82
82
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
83
|
+
/* Ghost */
|
|
84
|
+
.variant-ghost-primary {
|
|
85
|
+
@apply variant-outline-primary bg-primary-500/20 dark:bg-primary-500/20;
|
|
86
|
+
}
|
|
87
|
+
.variant-ghost-secondary {
|
|
88
|
+
@apply variant-outline-secondary bg-secondary-500/20 dark:bg-secondary-500/20;
|
|
89
|
+
}
|
|
90
|
+
.variant-ghost-tertiary {
|
|
91
|
+
@apply variant-outline-tertiary bg-tertiary-500/20 dark:bg-tertiary-500/20;
|
|
92
|
+
}
|
|
93
|
+
.variant-ghost-success {
|
|
94
|
+
@apply variant-outline-success bg-success-500/20 dark:bg-success-500/20;
|
|
95
|
+
}
|
|
96
|
+
.variant-ghost-warning {
|
|
97
|
+
@apply variant-outline-warning bg-warning-500/20 dark:bg-warning-500/20;
|
|
98
|
+
}
|
|
99
|
+
.variant-ghost-error {
|
|
100
|
+
@apply variant-outline-error bg-error-500/20 dark:bg-error-500/20;
|
|
101
|
+
}
|
|
102
|
+
.variant-ghost,
|
|
103
|
+
.variant-ghost-surface {
|
|
104
|
+
@apply variant-outline-surface bg-surface-500/20 dark:bg-surface-500/20;
|
|
105
|
+
}
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
107
|
+
/* Soft */
|
|
108
|
+
.variant-soft-primary {
|
|
109
|
+
@apply bg-primary-400/20 !ring-0 text-primary-700-200-token dark:bg-primary-500/20;
|
|
110
|
+
}
|
|
111
|
+
.variant-soft-secondary {
|
|
112
|
+
@apply bg-secondary-400/20 !ring-0 text-secondary-700-200-token dark:bg-secondary-500/20;
|
|
113
|
+
}
|
|
114
|
+
.variant-soft-tertiary {
|
|
115
|
+
@apply bg-tertiary-400/20 !ring-0 text-tertiary-700-200-token dark:bg-tertiary-500/20;
|
|
116
|
+
}
|
|
117
|
+
.variant-soft-success {
|
|
118
|
+
@apply bg-success-400/20 !ring-0 text-success-700-200-token dark:bg-success-500/20;
|
|
119
|
+
}
|
|
120
|
+
.variant-soft-warning {
|
|
121
|
+
@apply bg-warning-400/20 !ring-0 text-warning-700-200-token dark:bg-warning-500/20;
|
|
122
|
+
}
|
|
123
|
+
.variant-soft-error {
|
|
124
|
+
@apply bg-error-400/20 !ring-0 text-error-700-200-token dark:bg-error-500/20;
|
|
125
|
+
}
|
|
126
|
+
.variant-soft,
|
|
127
|
+
.variant-soft-surface {
|
|
128
|
+
@apply bg-surface-400/20 !ring-0 text-surface-700-200-token dark:bg-surface-500/20;
|
|
129
|
+
}
|
|
130
130
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
131
|
+
/* Glass */
|
|
132
|
+
.variant-glass-primary {
|
|
133
|
+
@apply bg-primary-500/20 backdrop-blur-lg dark:bg-primary-500/20;
|
|
134
|
+
}
|
|
135
|
+
.variant-glass-secondary {
|
|
136
|
+
@apply bg-secondary-500/20 backdrop-blur-lg dark:bg-secondary-500/20;
|
|
137
|
+
}
|
|
138
|
+
.variant-glass-tertiary {
|
|
139
|
+
@apply bg-tertiary-500/20 backdrop-blur-lg dark:bg-tertiary-500/20;
|
|
140
|
+
}
|
|
141
|
+
.variant-glass-success {
|
|
142
|
+
@apply bg-success-500/20 backdrop-blur-lg dark:bg-success-500/20;
|
|
143
|
+
}
|
|
144
|
+
.variant-glass-warning {
|
|
145
|
+
@apply bg-warning-500/20 backdrop-blur-lg dark:bg-warning-500/20;
|
|
146
|
+
}
|
|
147
|
+
.variant-glass-error {
|
|
148
|
+
@apply bg-error-500/20 backdrop-blur-lg dark:bg-error-500/20;
|
|
149
|
+
}
|
|
150
|
+
.variant-glass-surface {
|
|
151
|
+
@apply bg-surface-500/20 backdrop-blur-lg dark:bg-surface-500/20;
|
|
152
|
+
}
|
|
153
|
+
.variant-glass {
|
|
154
|
+
@apply bg-surface-50/30 backdrop-blur-lg dark:bg-surface-900/30;
|
|
155
|
+
}
|
|
156
156
|
}
|
|
@@ -1,112 +1,112 @@
|
|
|
1
1
|
/* https://fonts.google.com/specimen/Space+Grotesk */
|
|
2
|
-
@import url(
|
|
2
|
+
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
|
|
3
3
|
/* https://fonts.google.com/specimen/Roboto?query=roboto */
|
|
4
|
-
@import url(
|
|
4
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
7
|
+
/* =~= Theme Properties =~= */
|
|
8
|
+
--theme-font-family-base: "Roboto", sans-serif;
|
|
9
|
+
--theme-font-family-heading: "Space Grotesk", sans-serif;
|
|
10
|
+
--theme-font-color-base: var(--color-primary-900);
|
|
11
|
+
--theme-font-color-dark: var(--color-primary-100);
|
|
12
|
+
--theme-rounded-base: 0px;
|
|
13
|
+
--theme-rounded-container: 0px;
|
|
14
|
+
--theme-border-base: 0px;
|
|
15
|
+
/* =~= Theme On-X Colors =~= */
|
|
16
|
+
--on-primary: 0 0 0;
|
|
17
|
+
--on-secondary: 255 255 255;
|
|
18
|
+
--on-tertiary: 255 255 255;
|
|
19
|
+
--on-success: 0 0 0;
|
|
20
|
+
--on-warning: 0 0 0;
|
|
21
|
+
--on-error: 255 255 255;
|
|
22
|
+
--on-surface: 255 255 255;
|
|
23
|
+
/* =~= Theme Colors =~= */
|
|
24
|
+
/* primary | #06b6d4 */
|
|
25
|
+
--color-primary-50: 218 244 249; /* ⬅ #daf4f9 */
|
|
26
|
+
--color-primary-100: 205 240 246; /* ⬅ #cdf0f6 */
|
|
27
|
+
--color-primary-200: 193 237 244; /* ⬅ #c1edf4 */
|
|
28
|
+
--color-primary-300: 155 226 238; /* ⬅ #9be2ee */
|
|
29
|
+
--color-primary-400: 81 204 225; /* ⬅ #51cce1 */
|
|
30
|
+
--color-primary-500: 6 182 212; /* ⬅ #06b6d4 */
|
|
31
|
+
--color-primary-600: 5 164 191; /* ⬅ #05a4bf */
|
|
32
|
+
--color-primary-700: 5 137 159; /* ⬅ #05899f */
|
|
33
|
+
--color-primary-800: 4 109 127; /* ⬅ #046d7f */
|
|
34
|
+
--color-primary-900: 3 89 104; /* ⬅ #035968 */
|
|
35
|
+
/* secondary | #3b82f6 */
|
|
36
|
+
--color-secondary-50: 226 236 254; /* ⬅ #e2ecfe */
|
|
37
|
+
--color-secondary-100: 216 230 253; /* ⬅ #d8e6fd */
|
|
38
|
+
--color-secondary-200: 206 224 253; /* ⬅ #cee0fd */
|
|
39
|
+
--color-secondary-300: 177 205 251; /* ⬅ #b1cdfb */
|
|
40
|
+
--color-secondary-400: 118 168 249; /* ⬅ #76a8f9 */
|
|
41
|
+
--color-secondary-500: 59 130 246; /* ⬅ #3b82f6 */
|
|
42
|
+
--color-secondary-600: 53 117 221; /* ⬅ #3575dd */
|
|
43
|
+
--color-secondary-700: 44 98 185; /* ⬅ #2c62b9 */
|
|
44
|
+
--color-secondary-800: 35 78 148; /* ⬅ #234e94 */
|
|
45
|
+
--color-secondary-900: 29 64 121; /* ⬅ #1d4079 */
|
|
46
|
+
/* tertiary | #a855f7 */
|
|
47
|
+
--color-tertiary-50: 242 230 254; /* ⬅ #f2e6fe */
|
|
48
|
+
--color-tertiary-100: 238 221 253; /* ⬅ #eeddfd */
|
|
49
|
+
--color-tertiary-200: 233 213 253; /* ⬅ #e9d5fd */
|
|
50
|
+
--color-tertiary-300: 220 187 252; /* ⬅ #dcbbfc */
|
|
51
|
+
--color-tertiary-400: 194 136 249; /* ⬅ #c288f9 */
|
|
52
|
+
--color-tertiary-500: 168 85 247; /* ⬅ #a855f7 */
|
|
53
|
+
--color-tertiary-600: 151 77 222; /* ⬅ #974dde */
|
|
54
|
+
--color-tertiary-700: 126 64 185; /* ⬅ #7e40b9 */
|
|
55
|
+
--color-tertiary-800: 101 51 148; /* ⬅ #653394 */
|
|
56
|
+
--color-tertiary-900: 82 42 121; /* ⬅ #522a79 */
|
|
57
|
+
/* success | #4ccb15 */
|
|
58
|
+
--color-success-50: 228 247 220; /* ⬅ #e4f7dc */
|
|
59
|
+
--color-success-100: 219 245 208; /* ⬅ #dbf5d0 */
|
|
60
|
+
--color-success-200: 210 242 197; /* ⬅ #d2f2c5 */
|
|
61
|
+
--color-success-300: 183 234 161; /* ⬅ #b7eaa1 */
|
|
62
|
+
--color-success-400: 130 219 91; /* ⬅ #82db5b */
|
|
63
|
+
--color-success-500: 76 203 21; /* ⬅ #4ccb15 */
|
|
64
|
+
--color-success-600: 68 183 19; /* ⬅ #44b713 */
|
|
65
|
+
--color-success-700: 57 152 16; /* ⬅ #399810 */
|
|
66
|
+
--color-success-800: 46 122 13; /* ⬅ #2e7a0d */
|
|
67
|
+
--color-success-900: 37 99 10; /* ⬅ #25630a */
|
|
68
|
+
/* warning | #f4c12a */
|
|
69
|
+
--color-warning-50: 253 246 223; /* ⬅ #fdf6df */
|
|
70
|
+
--color-warning-100: 253 243 212; /* ⬅ #fdf3d4 */
|
|
71
|
+
--color-warning-200: 252 240 202; /* ⬅ #fcf0ca */
|
|
72
|
+
--color-warning-300: 251 230 170; /* ⬅ #fbe6aa */
|
|
73
|
+
--color-warning-400: 247 212 106; /* ⬅ #f7d46a */
|
|
74
|
+
--color-warning-500: 244 193 42; /* ⬅ #f4c12a */
|
|
75
|
+
--color-warning-600: 220 174 38; /* ⬅ #dcae26 */
|
|
76
|
+
--color-warning-700: 183 145 32; /* ⬅ #b79120 */
|
|
77
|
+
--color-warning-800: 146 116 25; /* ⬅ #927419 */
|
|
78
|
+
--color-warning-900: 120 95 21; /* ⬅ #785f15 */
|
|
79
|
+
/* error | #b52c55 */
|
|
80
|
+
--color-error-50: 244 223 230; /* ⬅ #f4dfe6 */
|
|
81
|
+
--color-error-100: 240 213 221; /* ⬅ #f0d5dd */
|
|
82
|
+
--color-error-200: 237 202 213; /* ⬅ #edcad5 */
|
|
83
|
+
--color-error-300: 225 171 187; /* ⬅ #e1abbb */
|
|
84
|
+
--color-error-400: 203 107 136; /* ⬅ #cb6b88 */
|
|
85
|
+
--color-error-500: 181 44 85; /* ⬅ #b52c55 */
|
|
86
|
+
--color-error-600: 163 40 77; /* ⬅ #a3284d */
|
|
87
|
+
--color-error-700: 136 33 64; /* ⬅ #882140 */
|
|
88
|
+
--color-error-800: 109 26 51; /* ⬅ #6d1a33 */
|
|
89
|
+
--color-error-900: 89 22 42; /* ⬅ #59162a */
|
|
90
|
+
/* surface | #64748b */
|
|
91
|
+
--color-surface-50: 232 234 238; /* ⬅ #e8eaee */
|
|
92
|
+
--color-surface-100: 224 227 232; /* ⬅ #e0e3e8 */
|
|
93
|
+
--color-surface-200: 216 220 226; /* ⬅ #d8dce2 */
|
|
94
|
+
--color-surface-300: 193 199 209; /* ⬅ #c1c7d1 */
|
|
95
|
+
--color-surface-400: 147 158 174; /* ⬅ #939eae */
|
|
96
|
+
--color-surface-500: 100 116 139; /* ⬅ #64748b */
|
|
97
|
+
--color-surface-600: 90 104 125; /* ⬅ #5a687d */
|
|
98
|
+
--color-surface-700: 75 87 104; /* ⬅ #4b5768 */
|
|
99
|
+
--color-surface-800: 60 70 83; /* ⬅ #3c4653 */
|
|
100
|
+
--color-surface-900: 49 57 68; /* ⬅ #313944 */
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
[data-theme=
|
|
104
|
-
[data-theme=
|
|
105
|
-
[data-theme=
|
|
106
|
-
[data-theme=
|
|
107
|
-
[data-theme=
|
|
108
|
-
[data-theme=
|
|
109
|
-
|
|
103
|
+
[data-theme="rocket"] h1,
|
|
104
|
+
[data-theme="rocket"] h2,
|
|
105
|
+
[data-theme="rocket"] h3,
|
|
106
|
+
[data-theme="rocket"] h4,
|
|
107
|
+
[data-theme="rocket"] h5,
|
|
108
|
+
[data-theme="rocket"] h6 {
|
|
109
|
+
font-weight: bold;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
/* Applied to body with `<body data-theme="rocket">` */
|
|
@@ -116,4 +116,4 @@
|
|
|
116
116
|
background-image:
|
|
117
117
|
radial-gradient(at 0% 0%, rgba(var(--color-secondary-500) / 0.33) 0px, transparent 50%),
|
|
118
118
|
radial-gradient(at 98% 1%, rgba(var(--color-error-500) / 0.33) 0px, transparent 50%);
|
|
119
|
-
}
|
|
119
|
+
}
|