@@ -13,8 +13,176 @@ export interface SettingsCore {
13
13
name : string ;
14
14
}
15
15
16
- // NOTE: SettingsColors handled as `Record<string, string>`
17
- // export interface SettingsColors {}
16
+ export interface SettingsColors {
17
+ '--color-primary-50' : string ;
18
+ '--color-primary-100' : string ;
19
+ '--color-primary-200' : string ;
20
+ '--color-primary-300' : string ;
21
+ '--color-primary-400' : string ;
22
+ '--color-primary-500' : string ;
23
+ '--color-primary-600' : string ;
24
+ '--color-primary-700' : string ;
25
+ '--color-primary-800' : string ;
26
+ '--color-primary-900' : string ;
27
+ '--color-primary-950' : string ;
28
+ '--color-primary-contrast-dark' : string ;
29
+ '--color-primary-contrast-light' : string ;
30
+ '--color-primary-contrast-50' : string ;
31
+ '--color-primary-contrast-100' : string ;
32
+ '--color-primary-contrast-200' : string ;
33
+ '--color-primary-contrast-300' : string ;
34
+ '--color-primary-contrast-400' : string ;
35
+ '--color-primary-contrast-500' : string ;
36
+ '--color-primary-contrast-600' : string ;
37
+ '--color-primary-contrast-700' : string ;
38
+ '--color-primary-contrast-800' : string ;
39
+ '--color-primary-contrast-900' : string ;
40
+ '--color-primary-contrast-950' : string ;
41
+ '--color-secondary-50' : string ;
42
+ '--color-secondary-100' : string ;
43
+ '--color-secondary-200' : string ;
44
+ '--color-secondary-300' : string ;
45
+ '--color-secondary-400' : string ;
46
+ '--color-secondary-500' : string ;
47
+ '--color-secondary-600' : string ;
48
+ '--color-secondary-700' : string ;
49
+ '--color-secondary-800' : string ;
50
+ '--color-secondary-900' : string ;
51
+ '--color-secondary-950' : string ;
52
+ '--color-secondary-contrast-dark' : string ;
53
+ '--color-secondary-contrast-light' : string ;
54
+ '--color-secondary-contrast-50' : string ;
55
+ '--color-secondary-contrast-100' : string ;
56
+ '--color-secondary-contrast-200' : string ;
57
+ '--color-secondary-contrast-300' : string ;
58
+ '--color-secondary-contrast-400' : string ;
59
+ '--color-secondary-contrast-500' : string ;
60
+ '--color-secondary-contrast-600' : string ;
61
+ '--color-secondary-contrast-700' : string ;
62
+ '--color-secondary-contrast-800' : string ;
63
+ '--color-secondary-contrast-900' : string ;
64
+ '--color-secondary-contrast-950' : string ;
65
+ '--color-tertiary-50' : string ;
66
+ '--color-tertiary-100' : string ;
67
+ '--color-tertiary-200' : string ;
68
+ '--color-tertiary-300' : string ;
69
+ '--color-tertiary-400' : string ;
70
+ '--color-tertiary-500' : string ;
71
+ '--color-tertiary-600' : string ;
72
+ '--color-tertiary-700' : string ;
73
+ '--color-tertiary-800' : string ;
74
+ '--color-tertiary-900' : string ;
75
+ '--color-tertiary-950' : string ;
76
+ '--color-tertiary-contrast-dark' : string ;
77
+ '--color-tertiary-contrast-light' : string ;
78
+ '--color-tertiary-contrast-50' : string ;
79
+ '--color-tertiary-contrast-100' : string ;
80
+ '--color-tertiary-contrast-200' : string ;
81
+ '--color-tertiary-contrast-300' : string ;
82
+ '--color-tertiary-contrast-400' : string ;
83
+ '--color-tertiary-contrast-500' : string ;
84
+ '--color-tertiary-contrast-600' : string ;
85
+ '--color-tertiary-contrast-700' : string ;
86
+ '--color-tertiary-contrast-800' : string ;
87
+ '--color-tertiary-contrast-900' : string ;
88
+ '--color-tertiary-contrast-950' : string ;
89
+ '--color-success-50' : string ;
90
+ '--color-success-100' : string ;
91
+ '--color-success-200' : string ;
92
+ '--color-success-300' : string ;
93
+ '--color-success-400' : string ;
94
+ '--color-success-500' : string ;
95
+ '--color-success-600' : string ;
96
+ '--color-success-700' : string ;
97
+ '--color-success-800' : string ;
98
+ '--color-success-900' : string ;
99
+ '--color-success-950' : string ;
100
+ '--color-success-contrast-dark' : string ;
101
+ '--color-success-contrast-light' : string ;
102
+ '--color-success-contrast-50' : string ;
103
+ '--color-success-contrast-100' : string ;
104
+ '--color-success-contrast-200' : string ;
105
+ '--color-success-contrast-300' : string ;
106
+ '--color-success-contrast-400' : string ;
107
+ '--color-success-contrast-500' : string ;
108
+ '--color-success-contrast-600' : string ;
109
+ '--color-success-contrast-700' : string ;
110
+ '--color-success-contrast-800' : string ;
111
+ '--color-success-contrast-900' : string ;
112
+ '--color-success-contrast-950' : string ;
113
+ '--color-warning-50' : string ;
114
+ '--color-warning-100' : string ;
115
+ '--color-warning-200' : string ;
116
+ '--color-warning-300' : string ;
117
+ '--color-warning-400' : string ;
118
+ '--color-warning-500' : string ;
119
+ '--color-warning-600' : string ;
120
+ '--color-warning-700' : string ;
121
+ '--color-warning-800' : string ;
122
+ '--color-warning-900' : string ;
123
+ '--color-warning-950' : string ;
124
+ '--color-warning-contrast-dark' : string ;
125
+ '--color-warning-contrast-light' : string ;
126
+ '--color-warning-contrast-50' : string ;
127
+ '--color-warning-contrast-100' : string ;
128
+ '--color-warning-contrast-200' : string ;
129
+ '--color-warning-contrast-300' : string ;
130
+ '--color-warning-contrast-400' : string ;
131
+ '--color-warning-contrast-500' : string ;
132
+ '--color-warning-contrast-600' : string ;
133
+ '--color-warning-contrast-700' : string ;
134
+ '--color-warning-contrast-800' : string ;
135
+ '--color-warning-contrast-900' : string ;
136
+ '--color-warning-contrast-950' : string ;
137
+ '--color-error-50' : string ;
138
+ '--color-error-100' : string ;
139
+ '--color-error-200' : string ;
140
+ '--color-error-300' : string ;
141
+ '--color-error-400' : string ;
142
+ '--color-error-500' : string ;
143
+ '--color-error-600' : string ;
144
+ '--color-error-700' : string ;
145
+ '--color-error-800' : string ;
146
+ '--color-error-900' : string ;
147
+ '--color-error-950' : string ;
148
+ '--color-error-contrast-dark' : string ;
149
+ '--color-error-contrast-light' : string ;
150
+ '--color-error-contrast-50' : string ;
151
+ '--color-error-contrast-100' : string ;
152
+ '--color-error-contrast-200' : string ;
153
+ '--color-error-contrast-300' : string ;
154
+ '--color-error-contrast-400' : string ;
155
+ '--color-error-contrast-500' : string ;
156
+ '--color-error-contrast-600' : string ;
157
+ '--color-error-contrast-700' : string ;
158
+ '--color-error-contrast-800' : string ;
159
+ '--color-error-contrast-900' : string ;
160
+ '--color-error-contrast-950' : string ;
161
+ '--color-surface-50' : string ;
162
+ '--color-surface-100' : string ;
163
+ '--color-surface-200' : string ;
164
+ '--color-surface-300' : string ;
165
+ '--color-surface-400' : string ;
166
+ '--color-surface-500' : string ;
167
+ '--color-surface-600' : string ;
168
+ '--color-surface-700' : string ;
169
+ '--color-surface-800' : string ;
170
+ '--color-surface-900' : string ;
171
+ '--color-surface-950' : string ;
172
+ '--color-surface-contrast-dark' : string ;
173
+ '--color-surface-contrast-light' : string ;
174
+ '--color-surface-contrast-50' : string ;
175
+ '--color-surface-contrast-100' : string ;
176
+ '--color-surface-contrast-200' : string ;
177
+ '--color-surface-contrast-300' : string ;
178
+ '--color-surface-contrast-400' : string ;
179
+ '--color-surface-contrast-500' : string ;
180
+ '--color-surface-contrast-600' : string ;
181
+ '--color-surface-contrast-700' : string ;
182
+ '--color-surface-contrast-800' : string ;
183
+ '--color-surface-contrast-900' : string ;
184
+ '--color-surface-contrast-950' : string ;
185
+ }
18
186
19
187
export interface SettingsBackgrounds {
20
188
'--body-background-color' : string ;
0 commit comments