@code-coaching/vuetiful 0.37.1 → 0.41.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/vuetiful.es.mjs +2660 -2583
- package/dist/vuetiful.umd.cjs +35 -10
- package/package.json +1 -1
- package/dist/types/components/atoms/VAvatar.vue.d.ts +0 -45
- package/dist/types/components/atoms/VBadge.vue.d.ts +0 -36
- package/dist/types/components/atoms/VButton.vue.d.ts +0 -48
- package/dist/types/components/atoms/VChip.vue.d.ts +0 -35
- package/dist/types/components/atoms/VPopover.vue.d.ts +0 -51
- package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +0 -9
- package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +0 -59
- package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +0 -51
- package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +0 -9
- package/dist/types/components/atoms/VSwitch/VSwitch.vue.d.ts +0 -58
- package/dist/types/components/atoms/VSwitch/VSwitchDescription.vue.d.ts +0 -35
- package/dist/types/components/atoms/VSwitch/VSwitchGroup.vue.d.ts +0 -35
- package/dist/types/components/atoms/VSwitch/VSwitchLabel.vue.d.ts +0 -36
- package/dist/types/components/atoms/index.d.ts +0 -14
- package/dist/types/components/index.d.ts +0 -2
- package/dist/types/components/molecules/VAccordion/VAccordion.vue.d.ts +0 -43
- package/dist/types/components/molecules/VAccordion/VAccordionItem.vue.d.ts +0 -38
- package/dist/types/components/molecules/VAlert.vue.d.ts +0 -57
- package/dist/types/components/molecules/VCard/VCard.vue.d.ts +0 -41
- package/dist/types/components/molecules/VCard/VCardBody.vue.d.ts +0 -35
- package/dist/types/components/molecules/VCard/VCardFooter.vue.d.ts +0 -39
- package/dist/types/components/molecules/VCard/VCardHeader.vue.d.ts +0 -39
- package/dist/types/components/molecules/VCodeBlock.vue.d.ts +0 -80
- package/dist/types/components/molecules/VDrawer.vue.d.ts +0 -47
- package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +0 -59
- package/dist/types/components/molecules/VListbox/VListboxButton.vue.d.ts +0 -24
- package/dist/types/components/molecules/VListbox/VListboxItem.vue.d.ts +0 -25
- package/dist/types/components/molecules/VListbox/VListboxItems.vue.d.ts +0 -21
- package/dist/types/components/molecules/VListbox/VListboxLabel.vue.d.ts +0 -9
- package/dist/types/components/molecules/VPreview.vue.d.ts +0 -60
- package/dist/types/components/molecules/VRail/VRail.vue.d.ts +0 -43
- package/dist/types/components/molecules/VRail/VRailTile.vue.d.ts +0 -75
- package/dist/types/components/molecules/VShell.vue.d.ts +0 -118
- package/dist/types/components/molecules/VShellConfigurator.vue.d.ts +0 -99
- package/dist/types/components/molecules/VTabs/VTab.vue.d.ts +0 -55
- package/dist/types/components/molecules/VTabs/VTabPanel.vue.d.ts +0 -9
- package/dist/types/components/molecules/VTabs/VTabs.vue.d.ts +0 -46
- package/dist/types/components/molecules/Vuetiful.vue.d.ts +0 -22
- package/dist/types/components/molecules/index.d.ts +0 -21
- package/dist/types/directives/click-outside-group.d.ts +0 -9
- package/dist/types/directives/click-outside.d.ts +0 -9
- package/dist/types/directives/clipboard.d.ts +0 -3
- package/dist/types/directives/index.d.ts +0 -4
- package/dist/types/index.d.ts +0 -5
- package/dist/types/props/index.d.ts +0 -1
- package/dist/types/props/props.d.ts +0 -1
- package/dist/types/services/drawer.service.d.ts +0 -23
- package/dist/types/services/highlight.service.d.ts +0 -4
- package/dist/types/services/index.d.ts +0 -6
- package/dist/types/services/rail.service.d.ts +0 -4
- package/dist/types/services/settings.service.d.ts +0 -132
- package/dist/types/utils/id-generator.d.ts +0 -1
- package/dist/types/utils/index.d.ts +0 -9
- package/dist/types/utils/platform/platform.service.d.ts +0 -4
- package/dist/types/utils/tailwind-merge.d.ts +0 -3
- package/dist/types/utils/theme/VLightSwitch.vue.d.ts +0 -16
- package/dist/types/utils/theme/VThemeSwitch.vue.d.ts +0 -40
- package/dist/types/utils/theme/dark-mode.service.d.ts +0 -19
- package/dist/types/utils/theme/rocket.theme.d.ts +0 -223
- package/dist/types/utils/theme/theme.service.d.ts +0 -14
- package/dist/types/utils/theme/themes.d.ts +0 -3
- package/dist/types/utils/theme/vuetiful.theme.d.ts +0 -224
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
declare const MODE: {
|
|
2
|
-
LIGHT: string;
|
|
3
|
-
DARK: string;
|
|
4
|
-
};
|
|
5
|
-
export type Mode = (typeof MODE)[keyof typeof MODE];
|
|
6
|
-
declare const useDarkMode: () => {
|
|
7
|
-
chosenMode: import("vue").Ref<string>;
|
|
8
|
-
isDark: Readonly<import("vue").Ref<boolean>>;
|
|
9
|
-
initializeMode: () => void;
|
|
10
|
-
applyMode: (value: Mode) => void;
|
|
11
|
-
autoModeWatcher: () => void;
|
|
12
|
-
applyModeSSR: (html: string, mode: Mode) => string;
|
|
13
|
-
getModeFromCookie: (cookies: string) => string;
|
|
14
|
-
MODE: {
|
|
15
|
-
LIGHT: string;
|
|
16
|
-
DARK: string;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export { useDarkMode };
|
|
@@ -1,223 +0,0 @@
|
|
|
1
|
-
declare const rocket: {
|
|
2
|
-
name: string;
|
|
3
|
-
properties: {
|
|
4
|
-
"--space-scale-factor": string;
|
|
5
|
-
"--type-scale-factor": string;
|
|
6
|
-
"--type-scale-1": string;
|
|
7
|
-
"--type-scale-2": string;
|
|
8
|
-
"--type-scale-3": string;
|
|
9
|
-
"--type-scale-4": string;
|
|
10
|
-
"--type-scale-5": string;
|
|
11
|
-
"--type-scale-6": string;
|
|
12
|
-
"--type-scale-7": string;
|
|
13
|
-
"--type-scale-8": string;
|
|
14
|
-
"--type-scale-9": string;
|
|
15
|
-
"--type-scale-10": string;
|
|
16
|
-
"--type-scale-11": string;
|
|
17
|
-
"--type-scale-12": string;
|
|
18
|
-
"--type-scale-13": string;
|
|
19
|
-
"--base-font-color": string;
|
|
20
|
-
"--base-font-color-dark": string;
|
|
21
|
-
"--base-font-family": string;
|
|
22
|
-
"--base-font-size": string;
|
|
23
|
-
"--base-line-height": string;
|
|
24
|
-
"--base-font-weight": string;
|
|
25
|
-
"--base-font-style": string;
|
|
26
|
-
"--base-letter-spacing": string;
|
|
27
|
-
"--heading-font-color": string;
|
|
28
|
-
"--heading-font-color-dark": string;
|
|
29
|
-
"--heading-font-family": string;
|
|
30
|
-
"--heading-font-weight": string;
|
|
31
|
-
"--heading-font-style": string;
|
|
32
|
-
"--heading-letter-spacing": string;
|
|
33
|
-
"--anchor-font-color": string;
|
|
34
|
-
"--anchor-font-color-dark": string;
|
|
35
|
-
"--anchor-font-family": string;
|
|
36
|
-
"--anchor-font-size": string;
|
|
37
|
-
"--anchor-line-height": string;
|
|
38
|
-
"--anchor-font-weight": string;
|
|
39
|
-
"--anchor-font-style": string;
|
|
40
|
-
"--anchor-letter-spacing": string;
|
|
41
|
-
"--anchor-text-decoration": string;
|
|
42
|
-
"--anchor-text-decoration-hover": string;
|
|
43
|
-
"--anchor-text-decoration-active": string;
|
|
44
|
-
"--anchor-text-decoration-focus": string;
|
|
45
|
-
"--body-background-color": string;
|
|
46
|
-
"--body-background-color-dark": string;
|
|
47
|
-
"--radii-default": string;
|
|
48
|
-
"--radii-container": string;
|
|
49
|
-
"--border-width-default": string;
|
|
50
|
-
"--ring-width-default": string;
|
|
51
|
-
"--outline-width-default": string;
|
|
52
|
-
"--divide-width-default": string;
|
|
53
|
-
"--color-primary-50": string;
|
|
54
|
-
"--color-primary-100": string;
|
|
55
|
-
"--color-primary-200": string;
|
|
56
|
-
"--color-primary-300": string;
|
|
57
|
-
"--color-primary-400": string;
|
|
58
|
-
"--color-primary-500": string;
|
|
59
|
-
"--color-primary-600": string;
|
|
60
|
-
"--color-primary-700": string;
|
|
61
|
-
"--color-primary-800": string;
|
|
62
|
-
"--color-primary-900": string;
|
|
63
|
-
"--color-primary-950": string;
|
|
64
|
-
"--color-primary-contrast-dark": string;
|
|
65
|
-
"--color-primary-contrast-light": string;
|
|
66
|
-
"--color-primary-contrast-50": string;
|
|
67
|
-
"--color-primary-contrast-100": string;
|
|
68
|
-
"--color-primary-contrast-200": string;
|
|
69
|
-
"--color-primary-contrast-300": string;
|
|
70
|
-
"--color-primary-contrast-400": string;
|
|
71
|
-
"--color-primary-contrast-500": string;
|
|
72
|
-
"--color-primary-contrast-600": string;
|
|
73
|
-
"--color-primary-contrast-700": string;
|
|
74
|
-
"--color-primary-contrast-800": string;
|
|
75
|
-
"--color-primary-contrast-900": string;
|
|
76
|
-
"--color-primary-contrast-950": string;
|
|
77
|
-
"--color-secondary-50": string;
|
|
78
|
-
"--color-secondary-100": string;
|
|
79
|
-
"--color-secondary-200": string;
|
|
80
|
-
"--color-secondary-300": string;
|
|
81
|
-
"--color-secondary-400": string;
|
|
82
|
-
"--color-secondary-500": string;
|
|
83
|
-
"--color-secondary-600": string;
|
|
84
|
-
"--color-secondary-700": string;
|
|
85
|
-
"--color-secondary-800": string;
|
|
86
|
-
"--color-secondary-900": string;
|
|
87
|
-
"--color-secondary-950": string;
|
|
88
|
-
"--color-secondary-contrast-dark": string;
|
|
89
|
-
"--color-secondary-contrast-light": string;
|
|
90
|
-
"--color-secondary-contrast-50": string;
|
|
91
|
-
"--color-secondary-contrast-100": string;
|
|
92
|
-
"--color-secondary-contrast-200": string;
|
|
93
|
-
"--color-secondary-contrast-300": string;
|
|
94
|
-
"--color-secondary-contrast-400": string;
|
|
95
|
-
"--color-secondary-contrast-500": string;
|
|
96
|
-
"--color-secondary-contrast-600": string;
|
|
97
|
-
"--color-secondary-contrast-700": string;
|
|
98
|
-
"--color-secondary-contrast-800": string;
|
|
99
|
-
"--color-secondary-contrast-900": string;
|
|
100
|
-
"--color-secondary-contrast-950": string;
|
|
101
|
-
"--color-tertiary-50": string;
|
|
102
|
-
"--color-tertiary-100": string;
|
|
103
|
-
"--color-tertiary-200": string;
|
|
104
|
-
"--color-tertiary-300": string;
|
|
105
|
-
"--color-tertiary-400": string;
|
|
106
|
-
"--color-tertiary-500": string;
|
|
107
|
-
"--color-tertiary-600": string;
|
|
108
|
-
"--color-tertiary-700": string;
|
|
109
|
-
"--color-tertiary-800": string;
|
|
110
|
-
"--color-tertiary-900": string;
|
|
111
|
-
"--color-tertiary-950": string;
|
|
112
|
-
"--color-tertiary-contrast-dark": string;
|
|
113
|
-
"--color-tertiary-contrast-light": string;
|
|
114
|
-
"--color-tertiary-contrast-50": string;
|
|
115
|
-
"--color-tertiary-contrast-100": string;
|
|
116
|
-
"--color-tertiary-contrast-200": string;
|
|
117
|
-
"--color-tertiary-contrast-300": string;
|
|
118
|
-
"--color-tertiary-contrast-400": string;
|
|
119
|
-
"--color-tertiary-contrast-500": string;
|
|
120
|
-
"--color-tertiary-contrast-600": string;
|
|
121
|
-
"--color-tertiary-contrast-700": string;
|
|
122
|
-
"--color-tertiary-contrast-800": string;
|
|
123
|
-
"--color-tertiary-contrast-900": string;
|
|
124
|
-
"--color-tertiary-contrast-950": string;
|
|
125
|
-
"--color-success-50": string;
|
|
126
|
-
"--color-success-100": string;
|
|
127
|
-
"--color-success-200": string;
|
|
128
|
-
"--color-success-300": string;
|
|
129
|
-
"--color-success-400": string;
|
|
130
|
-
"--color-success-500": string;
|
|
131
|
-
"--color-success-600": string;
|
|
132
|
-
"--color-success-700": string;
|
|
133
|
-
"--color-success-800": string;
|
|
134
|
-
"--color-success-900": string;
|
|
135
|
-
"--color-success-950": string;
|
|
136
|
-
"--color-success-contrast-dark": string;
|
|
137
|
-
"--color-success-contrast-light": string;
|
|
138
|
-
"--color-success-contrast-50": string;
|
|
139
|
-
"--color-success-contrast-100": string;
|
|
140
|
-
"--color-success-contrast-200": string;
|
|
141
|
-
"--color-success-contrast-300": string;
|
|
142
|
-
"--color-success-contrast-400": string;
|
|
143
|
-
"--color-success-contrast-500": string;
|
|
144
|
-
"--color-success-contrast-600": string;
|
|
145
|
-
"--color-success-contrast-700": string;
|
|
146
|
-
"--color-success-contrast-800": string;
|
|
147
|
-
"--color-success-contrast-900": string;
|
|
148
|
-
"--color-success-contrast-950": string;
|
|
149
|
-
"--color-warning-50": string;
|
|
150
|
-
"--color-warning-100": string;
|
|
151
|
-
"--color-warning-200": string;
|
|
152
|
-
"--color-warning-300": string;
|
|
153
|
-
"--color-warning-400": string;
|
|
154
|
-
"--color-warning-500": string;
|
|
155
|
-
"--color-warning-600": string;
|
|
156
|
-
"--color-warning-700": string;
|
|
157
|
-
"--color-warning-800": string;
|
|
158
|
-
"--color-warning-900": string;
|
|
159
|
-
"--color-warning-950": string;
|
|
160
|
-
"--color-warning-contrast-dark": string;
|
|
161
|
-
"--color-warning-contrast-light": string;
|
|
162
|
-
"--color-warning-contrast-50": string;
|
|
163
|
-
"--color-warning-contrast-100": string;
|
|
164
|
-
"--color-warning-contrast-200": string;
|
|
165
|
-
"--color-warning-contrast-300": string;
|
|
166
|
-
"--color-warning-contrast-400": string;
|
|
167
|
-
"--color-warning-contrast-500": string;
|
|
168
|
-
"--color-warning-contrast-600": string;
|
|
169
|
-
"--color-warning-contrast-700": string;
|
|
170
|
-
"--color-warning-contrast-800": string;
|
|
171
|
-
"--color-warning-contrast-900": string;
|
|
172
|
-
"--color-warning-contrast-950": string;
|
|
173
|
-
"--color-error-50": string;
|
|
174
|
-
"--color-error-100": string;
|
|
175
|
-
"--color-error-200": string;
|
|
176
|
-
"--color-error-300": string;
|
|
177
|
-
"--color-error-400": string;
|
|
178
|
-
"--color-error-500": string;
|
|
179
|
-
"--color-error-600": string;
|
|
180
|
-
"--color-error-700": string;
|
|
181
|
-
"--color-error-800": string;
|
|
182
|
-
"--color-error-900": string;
|
|
183
|
-
"--color-error-950": string;
|
|
184
|
-
"--color-error-contrast-dark": string;
|
|
185
|
-
"--color-error-contrast-light": string;
|
|
186
|
-
"--color-error-contrast-50": string;
|
|
187
|
-
"--color-error-contrast-100": string;
|
|
188
|
-
"--color-error-contrast-200": string;
|
|
189
|
-
"--color-error-contrast-300": string;
|
|
190
|
-
"--color-error-contrast-400": string;
|
|
191
|
-
"--color-error-contrast-500": string;
|
|
192
|
-
"--color-error-contrast-600": string;
|
|
193
|
-
"--color-error-contrast-700": string;
|
|
194
|
-
"--color-error-contrast-800": string;
|
|
195
|
-
"--color-error-contrast-900": string;
|
|
196
|
-
"--color-error-contrast-950": string;
|
|
197
|
-
"--color-surface-50": string;
|
|
198
|
-
"--color-surface-100": string;
|
|
199
|
-
"--color-surface-200": string;
|
|
200
|
-
"--color-surface-300": string;
|
|
201
|
-
"--color-surface-400": string;
|
|
202
|
-
"--color-surface-500": string;
|
|
203
|
-
"--color-surface-600": string;
|
|
204
|
-
"--color-surface-700": string;
|
|
205
|
-
"--color-surface-800": string;
|
|
206
|
-
"--color-surface-900": string;
|
|
207
|
-
"--color-surface-950": string;
|
|
208
|
-
"--color-surface-contrast-dark": string;
|
|
209
|
-
"--color-surface-contrast-light": string;
|
|
210
|
-
"--color-surface-contrast-50": string;
|
|
211
|
-
"--color-surface-contrast-100": string;
|
|
212
|
-
"--color-surface-contrast-200": string;
|
|
213
|
-
"--color-surface-contrast-300": string;
|
|
214
|
-
"--color-surface-contrast-400": string;
|
|
215
|
-
"--color-surface-contrast-500": string;
|
|
216
|
-
"--color-surface-contrast-600": string;
|
|
217
|
-
"--color-surface-contrast-700": string;
|
|
218
|
-
"--color-surface-contrast-800": string;
|
|
219
|
-
"--color-surface-contrast-900": string;
|
|
220
|
-
"--color-surface-contrast-950": string;
|
|
221
|
-
};
|
|
222
|
-
};
|
|
223
|
-
export default rocket;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { Theme } from '@skeletonlabs/skeleton/themes';
|
|
2
|
-
import { type Ref } from 'vue';
|
|
3
|
-
declare const useTheme: () => {
|
|
4
|
-
chosenTheme: Ref<Theme>;
|
|
5
|
-
themes: Record<"vuetiful" | "rocket" | "catppuccin" | "cerberus" | "pine" | "rose", Theme>;
|
|
6
|
-
themeArray: Theme[];
|
|
7
|
-
applyThemeSSR: (html: string, theme: Theme) => string;
|
|
8
|
-
applyTheme: (theme: Theme, callback?: Function) => void;
|
|
9
|
-
getThemeFromCookie: (cookies: string) => Theme;
|
|
10
|
-
initializeTheme: (callback?: Function) => void;
|
|
11
|
-
changeDataTheme: (name: string) => void;
|
|
12
|
-
registerTheme: (theme: Theme) => void;
|
|
13
|
-
};
|
|
14
|
-
export { useTheme };
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
declare const vuetiful: {
|
|
2
|
-
name: string;
|
|
3
|
-
properties: {
|
|
4
|
-
'--space-scale-factor': string;
|
|
5
|
-
'--type-scale-factor': string;
|
|
6
|
-
'--type-scale-1': string;
|
|
7
|
-
'--type-scale-2': string;
|
|
8
|
-
'--type-scale-3': string;
|
|
9
|
-
'--type-scale-4': string;
|
|
10
|
-
'--type-scale-5': string;
|
|
11
|
-
'--type-scale-6': string;
|
|
12
|
-
'--type-scale-7': string;
|
|
13
|
-
'--type-scale-8': string;
|
|
14
|
-
'--type-scale-9': string;
|
|
15
|
-
'--type-scale-10': string;
|
|
16
|
-
'--type-scale-11': string;
|
|
17
|
-
'--type-scale-12': string;
|
|
18
|
-
'--type-scale-13': string;
|
|
19
|
-
'--base-font-color': string;
|
|
20
|
-
'--base-font-color-dark': string;
|
|
21
|
-
'--base-font-family': string;
|
|
22
|
-
'--base-font-size': string;
|
|
23
|
-
'--base-line-height': string;
|
|
24
|
-
'--base-font-weight': string;
|
|
25
|
-
'--base-font-style': string;
|
|
26
|
-
'--base-letter-spacing': string;
|
|
27
|
-
'--heading-font-color': string;
|
|
28
|
-
'--heading-font-color-dark': string;
|
|
29
|
-
'--heading-font-family': string;
|
|
30
|
-
'--heading-font-weight': string;
|
|
31
|
-
'--heading-font-style': string;
|
|
32
|
-
'--heading-letter-spacing': string;
|
|
33
|
-
'--anchor-font-color': string;
|
|
34
|
-
'--anchor-font-color-dark': string;
|
|
35
|
-
'--anchor-font-family': string;
|
|
36
|
-
'--anchor-font-size': string;
|
|
37
|
-
'--anchor-line-height': string;
|
|
38
|
-
'--anchor-font-weight': string;
|
|
39
|
-
'--anchor-font-style': string;
|
|
40
|
-
'--anchor-letter-spacing': string;
|
|
41
|
-
'--anchor-text-decoration': string;
|
|
42
|
-
'--anchor-text-decoration-hover': string;
|
|
43
|
-
'--anchor-text-decoration-active': string;
|
|
44
|
-
'--anchor-text-decoration-focus': string;
|
|
45
|
-
'--body-background-color': string;
|
|
46
|
-
'--body-background-color-dark': string;
|
|
47
|
-
'--radii-default': string;
|
|
48
|
-
'--radii-container': string;
|
|
49
|
-
'--border-width-default': string;
|
|
50
|
-
'--ring-width-default': string;
|
|
51
|
-
'--outline-width-default': string;
|
|
52
|
-
'--divide-width-default': string;
|
|
53
|
-
'--color-primary-50': string;
|
|
54
|
-
'--color-primary-100': string;
|
|
55
|
-
'--color-primary-200': string;
|
|
56
|
-
'--color-primary-300': string;
|
|
57
|
-
'--color-primary-400': string;
|
|
58
|
-
'--color-primary-500': string;
|
|
59
|
-
'--color-primary-600': string;
|
|
60
|
-
'--color-primary-700': string;
|
|
61
|
-
'--color-primary-800': string;
|
|
62
|
-
'--color-primary-900': string;
|
|
63
|
-
'--color-primary-950': string;
|
|
64
|
-
'--color-primary-contrast-dark': string;
|
|
65
|
-
'--color-primary-contrast-light': string;
|
|
66
|
-
'--color-primary-contrast-50': string;
|
|
67
|
-
'--color-primary-contrast-100': string;
|
|
68
|
-
'--color-primary-contrast-200': string;
|
|
69
|
-
'--color-primary-contrast-300': string;
|
|
70
|
-
'--color-primary-contrast-400': string;
|
|
71
|
-
'--color-primary-contrast-500': string;
|
|
72
|
-
'--color-primary-contrast-600': string;
|
|
73
|
-
'--color-primary-contrast-700': string;
|
|
74
|
-
'--color-primary-contrast-800': string;
|
|
75
|
-
'--color-primary-contrast-900': string;
|
|
76
|
-
'--color-primary-contrast-950': string;
|
|
77
|
-
'--color-secondary-50': string;
|
|
78
|
-
'--color-secondary-100': string;
|
|
79
|
-
'--color-secondary-200': string;
|
|
80
|
-
'--color-secondary-300': string;
|
|
81
|
-
'--color-secondary-400': string;
|
|
82
|
-
'--color-secondary-500': string;
|
|
83
|
-
'--color-secondary-600': string;
|
|
84
|
-
'--color-secondary-700': string;
|
|
85
|
-
'--color-secondary-800': string;
|
|
86
|
-
'--color-secondary-900': string;
|
|
87
|
-
'--color-secondary-950': string;
|
|
88
|
-
'--color-secondary-contrast-dark': string;
|
|
89
|
-
'--color-secondary-contrast-light': string;
|
|
90
|
-
'--color-secondary-contrast-50': string;
|
|
91
|
-
'--color-secondary-contrast-100': string;
|
|
92
|
-
'--color-secondary-contrast-200': string;
|
|
93
|
-
'--color-secondary-contrast-300': string;
|
|
94
|
-
'--color-secondary-contrast-400': string;
|
|
95
|
-
'--color-secondary-contrast-500': string;
|
|
96
|
-
'--color-secondary-contrast-600': string;
|
|
97
|
-
'--color-secondary-contrast-700': string;
|
|
98
|
-
'--color-secondary-contrast-800': string;
|
|
99
|
-
'--color-secondary-contrast-900': string;
|
|
100
|
-
'--color-secondary-contrast-950': string;
|
|
101
|
-
'--color-tertiary-50': string;
|
|
102
|
-
'--color-tertiary-100': string;
|
|
103
|
-
'--color-tertiary-200': string;
|
|
104
|
-
'--color-tertiary-300': string;
|
|
105
|
-
'--color-tertiary-400': string;
|
|
106
|
-
'--color-tertiary-500': string;
|
|
107
|
-
'--color-tertiary-600': string;
|
|
108
|
-
'--color-tertiary-700': string;
|
|
109
|
-
'--color-tertiary-800': string;
|
|
110
|
-
'--color-tertiary-900': string;
|
|
111
|
-
'--color-tertiary-950': string;
|
|
112
|
-
'--color-tertiary-contrast-dark': string;
|
|
113
|
-
'--color-tertiary-contrast-light': string;
|
|
114
|
-
'--color-tertiary-contrast-50': string;
|
|
115
|
-
'--color-tertiary-contrast-100': string;
|
|
116
|
-
'--color-tertiary-contrast-200': string;
|
|
117
|
-
'--color-tertiary-contrast-300': string;
|
|
118
|
-
'--color-tertiary-contrast-400': string;
|
|
119
|
-
'--color-tertiary-contrast-500': string;
|
|
120
|
-
'--color-tertiary-contrast-600': string;
|
|
121
|
-
'--color-tertiary-contrast-700': string;
|
|
122
|
-
'--color-tertiary-contrast-800': string;
|
|
123
|
-
'--color-tertiary-contrast-900': string;
|
|
124
|
-
'--color-tertiary-contrast-950': string;
|
|
125
|
-
'--color-success-50': string;
|
|
126
|
-
'--color-success-100': string;
|
|
127
|
-
'--color-success-200': string;
|
|
128
|
-
'--color-success-300': string;
|
|
129
|
-
'--color-success-400': string;
|
|
130
|
-
'--color-success-500': string;
|
|
131
|
-
'--color-success-600': string;
|
|
132
|
-
'--color-success-700': string;
|
|
133
|
-
'--color-success-800': string;
|
|
134
|
-
'--color-success-900': string;
|
|
135
|
-
'--color-success-950': string;
|
|
136
|
-
'--color-success-contrast-dark': string;
|
|
137
|
-
'--color-success-contrast-light': string;
|
|
138
|
-
'--color-success-contrast-50': string;
|
|
139
|
-
'--color-success-contrast-100': string;
|
|
140
|
-
'--color-success-contrast-200': string;
|
|
141
|
-
'--color-success-contrast-300': string;
|
|
142
|
-
'--color-success-contrast-400': string;
|
|
143
|
-
'--color-success-contrast-500': string;
|
|
144
|
-
'--color-success-contrast-600': string;
|
|
145
|
-
'--color-success-contrast-700': string;
|
|
146
|
-
'--color-success-contrast-800': string;
|
|
147
|
-
'--color-success-contrast-900': string;
|
|
148
|
-
'--color-success-contrast-950': string;
|
|
149
|
-
'--color-warning-50': string;
|
|
150
|
-
'--color-warning-100': string;
|
|
151
|
-
'--color-warning-200': string;
|
|
152
|
-
'--color-warning-300': string;
|
|
153
|
-
'--color-warning-400': string;
|
|
154
|
-
'--color-warning-500': string;
|
|
155
|
-
'--color-warning-600': string;
|
|
156
|
-
'--color-warning-700': string;
|
|
157
|
-
'--color-warning-800': string;
|
|
158
|
-
'--color-warning-900': string;
|
|
159
|
-
'--color-warning-950': string;
|
|
160
|
-
'--color-warning-contrast-dark': string;
|
|
161
|
-
'--color-warning-contrast-light': string;
|
|
162
|
-
'--color-warning-contrast-50': string;
|
|
163
|
-
'--color-warning-contrast-100': string;
|
|
164
|
-
'--color-warning-contrast-200': string;
|
|
165
|
-
'--color-warning-contrast-300': string;
|
|
166
|
-
'--color-warning-contrast-400': string;
|
|
167
|
-
'--color-warning-contrast-500': string;
|
|
168
|
-
'--color-warning-contrast-600': string;
|
|
169
|
-
'--color-warning-contrast-700': string;
|
|
170
|
-
'--color-warning-contrast-800': string;
|
|
171
|
-
'--color-warning-contrast-900': string;
|
|
172
|
-
'--color-warning-contrast-950': string;
|
|
173
|
-
'--color-error-50': string;
|
|
174
|
-
'--color-error-100': string;
|
|
175
|
-
'--color-error-200': string;
|
|
176
|
-
'--color-error-300': string;
|
|
177
|
-
'--color-error-400': string;
|
|
178
|
-
'--color-error-500': string;
|
|
179
|
-
'--color-error-600': string;
|
|
180
|
-
'--color-error-700': string;
|
|
181
|
-
'--color-error-800': string;
|
|
182
|
-
'--color-error-900': string;
|
|
183
|
-
'--color-error-950': string;
|
|
184
|
-
'--color-error-contrast-dark': string;
|
|
185
|
-
'--color-error-contrast-light': string;
|
|
186
|
-
'--color-error-contrast-50': string;
|
|
187
|
-
'--color-error-contrast-100': string;
|
|
188
|
-
'--color-error-contrast-200': string;
|
|
189
|
-
'--color-error-contrast-300': string;
|
|
190
|
-
'--color-error-contrast-400': string;
|
|
191
|
-
'--color-error-contrast-500': string;
|
|
192
|
-
'--color-error-contrast-600': string;
|
|
193
|
-
'--color-error-contrast-700': string;
|
|
194
|
-
'--color-error-contrast-800': string;
|
|
195
|
-
'--color-error-contrast-900': string;
|
|
196
|
-
'--color-error-contrast-950': string;
|
|
197
|
-
'--color-surface-50': string;
|
|
198
|
-
'--color-surface-100': string;
|
|
199
|
-
'--color-surface-200': string;
|
|
200
|
-
'--color-surface-300': string;
|
|
201
|
-
'--color-surface-400': string;
|
|
202
|
-
'--color-surface-500': string;
|
|
203
|
-
'--color-surface-600': string;
|
|
204
|
-
'--color-surface-700': string;
|
|
205
|
-
'--color-surface-800': string;
|
|
206
|
-
'--color-surface-900': string;
|
|
207
|
-
'--color-surface-950': string;
|
|
208
|
-
'--color-surface-contrast-dark': string;
|
|
209
|
-
'--color-surface-contrast-light': string;
|
|
210
|
-
'--color-surface-contrast-50': string;
|
|
211
|
-
'--color-surface-contrast-100': string;
|
|
212
|
-
'--color-surface-contrast-200': string;
|
|
213
|
-
'--color-surface-contrast-300': string;
|
|
214
|
-
'--color-surface-contrast-400': string;
|
|
215
|
-
'--color-surface-contrast-500': string;
|
|
216
|
-
'--color-surface-contrast-600': string;
|
|
217
|
-
'--color-surface-contrast-700': string;
|
|
218
|
-
'--color-surface-contrast-800': string;
|
|
219
|
-
'--color-surface-contrast-900': string;
|
|
220
|
-
'--color-surface-contrast-950': string;
|
|
221
|
-
};
|
|
222
|
-
custom: string;
|
|
223
|
-
};
|
|
224
|
-
export default vuetiful;
|