django-spire 0.20.2__py3-none-any.whl → 0.20.3__py3-none-any.whl
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.
- django_spire/consts.py +1 -1
- django_spire/core/static/django_spire/css/app-background.css +200 -0
- django_spire/core/static/django_spire/css/app-text.css +132 -1
- django_spire/core/static/django_spire/css/themes/ayu/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/ayu/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/catppuccin/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/catppuccin/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/default/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/default/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/gruvbox/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/gruvbox/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/material/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/material/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/nord/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/nord/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/one-dark/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/one-dark/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/palenight/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/palenight/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/rose-pine/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/rose-pine/app-light.css +3 -0
- django_spire/core/static/django_spire/css/themes/tokyo-night/app-dark.css +3 -0
- django_spire/core/static/django_spire/css/themes/tokyo-night/app-light.css +3 -0
- django_spire/theme/templates/django_spire/theme/section/color_section.html +239 -89
- django_spire/theme/templates/django_spire/theme/section/typography_section.html +87 -1
- {django_spire-0.20.2.dist-info → django_spire-0.20.3.dist-info}/METADATA +1 -1
- {django_spire-0.20.2.dist-info → django_spire-0.20.3.dist-info}/RECORD +30 -30
- {django_spire-0.20.2.dist-info → django_spire-0.20.3.dist-info}/WHEEL +0 -0
- {django_spire-0.20.2.dist-info → django_spire-0.20.3.dist-info}/licenses/LICENSE.md +0 -0
- {django_spire-0.20.2.dist-info → django_spire-0.20.3.dist-info}/top_level.txt +0 -0
django_spire/consts.py
CHANGED
|
@@ -58,6 +58,26 @@
|
|
|
58
58
|
background-color: var(--app-bg-primary-dark) !important;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
.bg-app-primary-opacity-10 {
|
|
62
|
+
background-color: color-mix(in srgb, var(--app-bg-primary) 10%, transparent) !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.bg-app-primary-opacity-25 {
|
|
66
|
+
background-color: color-mix(in srgb, var(--app-bg-primary) 25%, transparent) !important;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.bg-app-primary-opacity-50 {
|
|
70
|
+
background-color: color-mix(in srgb, var(--app-bg-primary) 50%, transparent) !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.bg-app-primary-opacity-75 {
|
|
74
|
+
background-color: color-mix(in srgb, var(--app-bg-primary) 75%, transparent) !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.bg-app-primary-opacity-90 {
|
|
78
|
+
background-color: color-mix(in srgb, var(--app-bg-primary) 90%, transparent) !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
61
81
|
.bg-app-secondary, .bg-app-secondary-hover:hover {
|
|
62
82
|
background-color: var(--app-bg-secondary) !important;
|
|
63
83
|
}
|
|
@@ -70,6 +90,26 @@
|
|
|
70
90
|
background-color: var(--app-bg-secondary-dark) !important;
|
|
71
91
|
}
|
|
72
92
|
|
|
93
|
+
.bg-app-secondary-opacity-10 {
|
|
94
|
+
background-color: color-mix(in srgb, var(--app-bg-secondary) 10%, transparent) !important;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.bg-app-secondary-opacity-25 {
|
|
98
|
+
background-color: color-mix(in srgb, var(--app-bg-secondary) 25%, transparent) !important;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.bg-app-secondary-opacity-50 {
|
|
102
|
+
background-color: color-mix(in srgb, var(--app-bg-secondary) 50%, transparent) !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.bg-app-secondary-opacity-75 {
|
|
106
|
+
background-color: color-mix(in srgb, var(--app-bg-secondary) 75%, transparent) !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.bg-app-secondary-opacity-90 {
|
|
110
|
+
background-color: color-mix(in srgb, var(--app-bg-secondary) 90%, transparent) !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
73
113
|
.bg-app-accent, .bg-app-accent-hover:hover {
|
|
74
114
|
background-color: var(--app-bg-accent) !important;
|
|
75
115
|
}
|
|
@@ -82,6 +122,26 @@
|
|
|
82
122
|
background-color: var(--app-bg-accent-dark) !important;
|
|
83
123
|
}
|
|
84
124
|
|
|
125
|
+
.bg-app-accent-opacity-10 {
|
|
126
|
+
background-color: color-mix(in srgb, var(--app-bg-accent) 10%, transparent) !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.bg-app-accent-opacity-25 {
|
|
130
|
+
background-color: color-mix(in srgb, var(--app-bg-accent) 25%, transparent) !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.bg-app-accent-opacity-50 {
|
|
134
|
+
background-color: color-mix(in srgb, var(--app-bg-accent) 50%, transparent) !important;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.bg-app-accent-opacity-75 {
|
|
138
|
+
background-color: color-mix(in srgb, var(--app-bg-accent) 75%, transparent) !important;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.bg-app-accent-opacity-90 {
|
|
142
|
+
background-color: color-mix(in srgb, var(--app-bg-accent) 90%, transparent) !important;
|
|
143
|
+
}
|
|
144
|
+
|
|
85
145
|
.bg-app-success, .bg-app-success-hover:hover {
|
|
86
146
|
background-color: var(--app-bg-success) !important;
|
|
87
147
|
}
|
|
@@ -94,6 +154,26 @@
|
|
|
94
154
|
background-color: var(--app-bg-success-dark) !important;
|
|
95
155
|
}
|
|
96
156
|
|
|
157
|
+
.bg-app-success-opacity-10 {
|
|
158
|
+
background-color: color-mix(in srgb, var(--app-bg-success) 10%, transparent) !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.bg-app-success-opacity-25 {
|
|
162
|
+
background-color: color-mix(in srgb, var(--app-bg-success) 25%, transparent) !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.bg-app-success-opacity-50 {
|
|
166
|
+
background-color: color-mix(in srgb, var(--app-bg-success) 50%, transparent) !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.bg-app-success-opacity-75 {
|
|
170
|
+
background-color: color-mix(in srgb, var(--app-bg-success) 75%, transparent) !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.bg-app-success-opacity-90 {
|
|
174
|
+
background-color: color-mix(in srgb, var(--app-bg-success) 90%, transparent) !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
97
177
|
.bg-app-warning, .bg-app-warning-hover:hover {
|
|
98
178
|
background-color: var(--app-bg-warning) !important;
|
|
99
179
|
}
|
|
@@ -106,6 +186,26 @@
|
|
|
106
186
|
background-color: var(--app-bg-warning-dark) !important;
|
|
107
187
|
}
|
|
108
188
|
|
|
189
|
+
.bg-app-warning-opacity-10 {
|
|
190
|
+
background-color: color-mix(in srgb, var(--app-bg-warning) 10%, transparent) !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.bg-app-warning-opacity-25 {
|
|
194
|
+
background-color: color-mix(in srgb, var(--app-bg-warning) 25%, transparent) !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.bg-app-warning-opacity-50 {
|
|
198
|
+
background-color: color-mix(in srgb, var(--app-bg-warning) 50%, transparent) !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.bg-app-warning-opacity-75 {
|
|
202
|
+
background-color: color-mix(in srgb, var(--app-bg-warning) 75%, transparent) !important;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.bg-app-warning-opacity-90 {
|
|
206
|
+
background-color: color-mix(in srgb, var(--app-bg-warning) 90%, transparent) !important;
|
|
207
|
+
}
|
|
208
|
+
|
|
109
209
|
.bg-app-danger, .bg-app-danger-hover:hover {
|
|
110
210
|
background-color: var(--app-bg-danger) !important;
|
|
111
211
|
}
|
|
@@ -118,6 +218,26 @@
|
|
|
118
218
|
background-color: var(--app-bg-danger-dark) !important;
|
|
119
219
|
}
|
|
120
220
|
|
|
221
|
+
.bg-app-danger-opacity-10 {
|
|
222
|
+
background-color: color-mix(in srgb, var(--app-bg-danger) 10%, transparent) !important;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.bg-app-danger-opacity-25 {
|
|
226
|
+
background-color: color-mix(in srgb, var(--app-bg-danger) 25%, transparent) !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.bg-app-danger-opacity-50 {
|
|
230
|
+
background-color: color-mix(in srgb, var(--app-bg-danger) 50%, transparent) !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.bg-app-danger-opacity-75 {
|
|
234
|
+
background-color: color-mix(in srgb, var(--app-bg-danger) 75%, transparent) !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.bg-app-danger-opacity-90 {
|
|
238
|
+
background-color: color-mix(in srgb, var(--app-bg-danger) 90%, transparent) !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
121
241
|
.bg-app-layer-one, .bg-app-layer-one-hover:hover {
|
|
122
242
|
background-color: var(--app-bg-layer-one) !important;
|
|
123
243
|
}
|
|
@@ -134,6 +254,86 @@
|
|
|
134
254
|
background-color: var(--app-bg-layer-four) !important;
|
|
135
255
|
}
|
|
136
256
|
|
|
257
|
+
.bg-app-layer-one-opacity-10 {
|
|
258
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-one) 10%, transparent) !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.bg-app-layer-one-opacity-25 {
|
|
262
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-one) 25%, transparent) !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.bg-app-layer-one-opacity-50 {
|
|
266
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-one) 50%, transparent) !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.bg-app-layer-one-opacity-75 {
|
|
270
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-one) 75%, transparent) !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.bg-app-layer-one-opacity-90 {
|
|
274
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-one) 90%, transparent) !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.bg-app-layer-two-opacity-10 {
|
|
278
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-two) 10%, transparent) !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.bg-app-layer-two-opacity-25 {
|
|
282
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-two) 25%, transparent) !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.bg-app-layer-two-opacity-50 {
|
|
286
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-two) 50%, transparent) !important;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.bg-app-layer-two-opacity-75 {
|
|
290
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-two) 75%, transparent) !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.bg-app-layer-two-opacity-90 {
|
|
294
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-two) 90%, transparent) !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.bg-app-layer-three-opacity-10 {
|
|
298
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-three) 10%, transparent) !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.bg-app-layer-three-opacity-25 {
|
|
302
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-three) 25%, transparent) !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.bg-app-layer-three-opacity-50 {
|
|
306
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-three) 50%, transparent) !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.bg-app-layer-three-opacity-75 {
|
|
310
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-three) 75%, transparent) !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.bg-app-layer-three-opacity-90 {
|
|
314
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-three) 90%, transparent) !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.bg-app-layer-four-opacity-10 {
|
|
318
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-four) 10%, transparent) !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.bg-app-layer-four-opacity-25 {
|
|
322
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-four) 25%, transparent) !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.bg-app-layer-four-opacity-50 {
|
|
326
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-four) 50%, transparent) !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.bg-app-layer-four-opacity-75 {
|
|
330
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-four) 75%, transparent) !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.bg-app-layer-four-opacity-90 {
|
|
334
|
+
background-color: color-mix(in srgb, var(--app-bg-layer-four) 90%, transparent) !important;
|
|
335
|
+
}
|
|
336
|
+
|
|
137
337
|
.bg-app-alt-layer-one, .bg-app-alt-layer-one-hover:hover {
|
|
138
338
|
background-color: var(--app-bg-alt-layer-one) !important;
|
|
139
339
|
color: var(--app-default-alt-text-color) !important;
|
|
@@ -44,6 +44,9 @@
|
|
|
44
44
|
--app-text-footer: var(--app-footer-text-color);
|
|
45
45
|
--app-link-footer: var(--app-footer-link-color);
|
|
46
46
|
--app-link-footer-hover: var(--app-footer-link-hover-color);
|
|
47
|
+
|
|
48
|
+
--app-text-inverted: var(--app-inverted-text-color);
|
|
49
|
+
--app-text-inverted-alt: var(--app-inverted-alt-text-color);
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
.text-alt-color, .text-alt-color-hover:hover {
|
|
@@ -62,6 +65,14 @@
|
|
|
62
65
|
color: var(--app-default-text-color) !important;
|
|
63
66
|
}
|
|
64
67
|
|
|
68
|
+
.text-app-inverted, .text-app-inverted-hover:hover {
|
|
69
|
+
color: var(--app-text-inverted) !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.text-app-inverted-alt, .text-app-inverted-alt-hover:hover {
|
|
73
|
+
color: var(--app-text-inverted-alt) !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
65
76
|
.text-app-primary, .text-app-primary-hover:hover {
|
|
66
77
|
color: var(--app-text-primary) !important;
|
|
67
78
|
}
|
|
@@ -74,6 +85,26 @@
|
|
|
74
85
|
color: var(--app-text-primary-dark) !important;
|
|
75
86
|
}
|
|
76
87
|
|
|
88
|
+
.text-app-primary-opacity-10 {
|
|
89
|
+
color: color-mix(in srgb, var(--app-text-primary) 10%, transparent) !important;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.text-app-primary-opacity-25 {
|
|
93
|
+
color: color-mix(in srgb, var(--app-text-primary) 25%, transparent) !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.text-app-primary-opacity-50 {
|
|
97
|
+
color: color-mix(in srgb, var(--app-text-primary) 50%, transparent) !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.text-app-primary-opacity-75 {
|
|
101
|
+
color: color-mix(in srgb, var(--app-text-primary) 75%, transparent) !important;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.text-app-primary-opacity-90 {
|
|
105
|
+
color: color-mix(in srgb, var(--app-text-primary) 90%, transparent) !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
77
108
|
.text-app-secondary, .text-app-secondary-hover:hover {
|
|
78
109
|
color: var(--app-text-secondary) !important;
|
|
79
110
|
}
|
|
@@ -86,6 +117,26 @@
|
|
|
86
117
|
color: var(--app-text-secondary-dark) !important;
|
|
87
118
|
}
|
|
88
119
|
|
|
120
|
+
.text-app-secondary-opacity-10 {
|
|
121
|
+
color: color-mix(in srgb, var(--app-text-secondary) 10%, transparent) !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.text-app-secondary-opacity-25 {
|
|
125
|
+
color: color-mix(in srgb, var(--app-text-secondary) 25%, transparent) !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.text-app-secondary-opacity-50 {
|
|
129
|
+
color: color-mix(in srgb, var(--app-text-secondary) 50%, transparent) !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.text-app-secondary-opacity-75 {
|
|
133
|
+
color: color-mix(in srgb, var(--app-text-secondary) 75%, transparent) !important;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.text-app-secondary-opacity-90 {
|
|
137
|
+
color: color-mix(in srgb, var(--app-text-secondary) 90%, transparent) !important;
|
|
138
|
+
}
|
|
139
|
+
|
|
89
140
|
.text-app-accent, .text-app-accent-hover:hover {
|
|
90
141
|
color: var(--app-text-accent) !important;
|
|
91
142
|
}
|
|
@@ -98,6 +149,26 @@
|
|
|
98
149
|
color: var(--app-text-accent-dark) !important;
|
|
99
150
|
}
|
|
100
151
|
|
|
152
|
+
.text-app-accent-opacity-10 {
|
|
153
|
+
color: color-mix(in srgb, var(--app-text-accent) 10%, transparent) !important;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.text-app-accent-opacity-25 {
|
|
157
|
+
color: color-mix(in srgb, var(--app-text-accent) 25%, transparent) !important;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.text-app-accent-opacity-50 {
|
|
161
|
+
color: color-mix(in srgb, var(--app-text-accent) 50%, transparent) !important;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.text-app-accent-opacity-75 {
|
|
165
|
+
color: color-mix(in srgb, var(--app-text-accent) 75%, transparent) !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.text-app-accent-opacity-90 {
|
|
169
|
+
color: color-mix(in srgb, var(--app-text-accent) 90%, transparent) !important;
|
|
170
|
+
}
|
|
171
|
+
|
|
101
172
|
.text-app-success, .text-app-success-hover:hover {
|
|
102
173
|
color: var(--app-text-success) !important;
|
|
103
174
|
}
|
|
@@ -110,6 +181,26 @@
|
|
|
110
181
|
color: var(--app-text-success-dark) !important;
|
|
111
182
|
}
|
|
112
183
|
|
|
184
|
+
.text-app-success-opacity-10 {
|
|
185
|
+
color: color-mix(in srgb, var(--app-text-success) 10%, transparent) !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.text-app-success-opacity-25 {
|
|
189
|
+
color: color-mix(in srgb, var(--app-text-success) 25%, transparent) !important;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.text-app-success-opacity-50 {
|
|
193
|
+
color: color-mix(in srgb, var(--app-text-success) 50%, transparent) !important;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.text-app-success-opacity-75 {
|
|
197
|
+
color: color-mix(in srgb, var(--app-text-success) 75%, transparent) !important;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.text-app-success-opacity-90 {
|
|
201
|
+
color: color-mix(in srgb, var(--app-text-success) 90%, transparent) !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
113
204
|
.text-app-warning, .text-app-warning-hover:hover {
|
|
114
205
|
color: var(--app-text-warning) !important;
|
|
115
206
|
}
|
|
@@ -122,6 +213,26 @@
|
|
|
122
213
|
color: var(--app-text-warning-dark) !important;
|
|
123
214
|
}
|
|
124
215
|
|
|
216
|
+
.text-app-warning-opacity-10 {
|
|
217
|
+
color: color-mix(in srgb, var(--app-text-warning) 10%, transparent) !important;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.text-app-warning-opacity-25 {
|
|
221
|
+
color: color-mix(in srgb, var(--app-text-warning) 25%, transparent) !important;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.text-app-warning-opacity-50 {
|
|
225
|
+
color: color-mix(in srgb, var(--app-text-warning) 50%, transparent) !important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.text-app-warning-opacity-75 {
|
|
229
|
+
color: color-mix(in srgb, var(--app-text-warning) 75%, transparent) !important;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.text-app-warning-opacity-90 {
|
|
233
|
+
color: color-mix(in srgb, var(--app-text-warning) 90%, transparent) !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
125
236
|
.text-app-danger, .text-app-danger-hover:hover {
|
|
126
237
|
color: var(--app-text-danger) !important;
|
|
127
238
|
}
|
|
@@ -134,6 +245,26 @@
|
|
|
134
245
|
color: var(--app-text-danger-dark) !important;
|
|
135
246
|
}
|
|
136
247
|
|
|
248
|
+
.text-app-danger-opacity-10 {
|
|
249
|
+
color: color-mix(in srgb, var(--app-text-danger) 10%, transparent) !important;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.text-app-danger-opacity-25 {
|
|
253
|
+
color: color-mix(in srgb, var(--app-text-danger) 25%, transparent) !important;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.text-app-danger-opacity-50 {
|
|
257
|
+
color: color-mix(in srgb, var(--app-text-danger) 50%, transparent) !important;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.text-app-danger-opacity-75 {
|
|
261
|
+
color: color-mix(in srgb, var(--app-text-danger) 75%, transparent) !important;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.text-app-danger-opacity-90 {
|
|
265
|
+
color: color-mix(in srgb, var(--app-text-danger) 90%, transparent) !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
137
268
|
.text-app-layer-one, .text-app-layer-one-hover:hover {
|
|
138
269
|
color: var(--app-text-layer-one) !important;
|
|
139
270
|
}
|
|
@@ -206,4 +337,4 @@
|
|
|
206
337
|
overflow: hidden;
|
|
207
338
|
text-overflow: ellipsis;
|
|
208
339
|
white-space: nowrap;
|
|
209
|
-
}
|
|
340
|
+
}
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #59c2ff;
|
|
43
43
|
--app-default-link-hover-color: #ffd580;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #0f1419;
|
|
46
|
+
--app-inverted-alt-text-color: #262d35;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #0d1017;
|
|
46
49
|
--app-side-navigation-text-color: #bfbdb6;
|
|
47
50
|
--app-side-navigation-link-color: #bfbdb6;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #0066cc;
|
|
43
43
|
--app-default-link-hover-color: #ff6a00;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #fafafa;
|
|
46
|
+
--app-inverted-alt-text-color: #f3f4f5;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #5c6773;
|
|
46
49
|
--app-side-navigation-text-color: #fafafa;
|
|
47
50
|
--app-side-navigation-link-color: #fafafa;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #cba6f7;
|
|
43
43
|
--app-default-link-hover-color: #f38ba8;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #1e1e2e;
|
|
46
|
+
--app-inverted-alt-text-color: #313244;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #181825;
|
|
46
49
|
--app-side-navigation-text-color: #cdd6f4;
|
|
47
50
|
--app-side-navigation-link-color: #cdd6f4;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #8839ef;
|
|
43
43
|
--app-default-link-hover-color: #d20f39;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #eff1f5;
|
|
46
|
+
--app-inverted-alt-text-color: #e6e9ef;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #4c4f69;
|
|
46
49
|
--app-side-navigation-text-color: #eff1f5;
|
|
47
50
|
--app-side-navigation-link-color: #eff1f5;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #0097c9;
|
|
43
43
|
--app-default-link-hover-color: #00b8e6;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #181818;
|
|
46
|
+
--app-inverted-alt-text-color: #232526;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #0f0f0f;
|
|
46
49
|
--app-side-navigation-text-color: #ffffff;
|
|
47
50
|
--app-side-navigation-link-color: #ffffff;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #0097c9;
|
|
43
43
|
--app-default-link-hover-color: #007ba3;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #ffffff;
|
|
46
|
+
--app-inverted-alt-text-color: #fafafa;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #181818;
|
|
46
49
|
--app-side-navigation-text-color: #ffffff;
|
|
47
50
|
--app-side-navigation-link-color: #ffffff;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #fabd2f;
|
|
43
43
|
--app-default-link-hover-color: #fe8019;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #282828;
|
|
46
|
+
--app-inverted-alt-text-color: #3c3836;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #1d2021;
|
|
46
49
|
--app-side-navigation-text-color: #ebdbb2;
|
|
47
50
|
--app-side-navigation-link-color: #ebdbb2;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #b57614;
|
|
43
43
|
--app-default-link-hover-color: #af3a03;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #fbf1c7;
|
|
46
|
+
--app-inverted-alt-text-color: #f2e5bc;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #3c3836;
|
|
46
49
|
--app-side-navigation-text-color: #fbf1c7;
|
|
47
50
|
--app-side-navigation-link-color: #fbf1c7;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #90caf9;
|
|
43
43
|
--app-default-link-hover-color: #ff8a65;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #121212;
|
|
46
|
+
--app-inverted-alt-text-color: #1e1e1e;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #121212;
|
|
46
49
|
--app-side-navigation-text-color: #ffffff;
|
|
47
50
|
--app-side-navigation-link-color: #ffffff;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #2196f3;
|
|
43
43
|
--app-default-link-hover-color: #ff5722;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #fafafa;
|
|
46
|
+
--app-inverted-alt-text-color: #f5f5f5;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #263238;
|
|
46
49
|
--app-side-navigation-text-color: #eceff1;
|
|
47
50
|
--app-side-navigation-link-color: #eceff1;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #81a1c1;
|
|
43
43
|
--app-default-link-hover-color: #bf616a;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #2e3440;
|
|
46
|
+
--app-inverted-alt-text-color: #3b4252;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #2e3440;
|
|
46
49
|
--app-side-navigation-text-color: #eceff4;
|
|
47
50
|
--app-side-navigation-link-color: #eceff4;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #5e81ac;
|
|
43
43
|
--app-default-link-hover-color: #bf616a;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #eceff4;
|
|
46
|
+
--app-inverted-alt-text-color: #e5e9f0;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #2e3440;
|
|
46
49
|
--app-side-navigation-text-color: #eceff4;
|
|
47
50
|
--app-side-navigation-link-color: #eceff4;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #61afef;
|
|
43
43
|
--app-default-link-hover-color: #c678dd;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #21252b;
|
|
46
|
+
--app-inverted-alt-text-color: #2c313c;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #1e2227;
|
|
46
49
|
--app-side-navigation-text-color: #abb2bf;
|
|
47
50
|
--app-side-navigation-link-color: #abb2bf;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #4078f2;
|
|
43
43
|
--app-default-link-hover-color: #a626a4;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #fafafa;
|
|
46
|
+
--app-inverted-alt-text-color: #f0f0f1;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #383a42;
|
|
46
49
|
--app-side-navigation-text-color: #fafafa;
|
|
47
50
|
--app-side-navigation-link-color: #fafafa;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #82aaff;
|
|
43
43
|
--app-default-link-hover-color: #c792ea;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #292d3e;
|
|
46
|
+
--app-inverted-alt-text-color: #444267;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #1e1e2e;
|
|
46
49
|
--app-side-navigation-text-color: #a6accd;
|
|
47
50
|
--app-side-navigation-link-color: #a6accd;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #4A90E2;
|
|
43
43
|
--app-default-link-hover-color: #7986CB;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #fafafa;
|
|
46
|
+
--app-inverted-alt-text-color: #f5f6f9;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #4e5579;
|
|
46
49
|
--app-side-navigation-text-color: #fafafa;
|
|
47
50
|
--app-side-navigation-link-color: #fafafa;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #c4a7e7;
|
|
43
43
|
--app-default-link-hover-color: #eb6f92;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #191724;
|
|
46
|
+
--app-inverted-alt-text-color: #26233a;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #1f1d2e;
|
|
46
49
|
--app-side-navigation-text-color: #e0def4;
|
|
47
50
|
--app-side-navigation-link-color: #e0def4;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #907aa9;
|
|
43
43
|
--app-default-link-hover-color: #d7827e;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #fffaf3;
|
|
46
|
+
--app-inverted-alt-text-color: #f2e9e1;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #56526e;
|
|
46
49
|
--app-side-navigation-text-color: #faf4ed;
|
|
47
50
|
--app-side-navigation-link-color: #faf4ed;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #7aa2f7;
|
|
43
43
|
--app-default-link-hover-color: #bb9af7;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #1a1b26;
|
|
46
|
+
--app-inverted-alt-text-color: #24283b;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #16161e;
|
|
46
49
|
--app-side-navigation-text-color: #c0caf5;
|
|
47
50
|
--app-side-navigation-link-color: #c0caf5;
|
|
@@ -42,6 +42,9 @@
|
|
|
42
42
|
--app-default-link-color: #3d59a1;
|
|
43
43
|
--app-default-link-hover-color: #f52a65;
|
|
44
44
|
|
|
45
|
+
--app-inverted-text-color: #d5d6db;
|
|
46
|
+
--app-inverted-alt-text-color: #dfe0e5;
|
|
47
|
+
|
|
45
48
|
--app-side-navigation-bg-color: #343b58;
|
|
46
49
|
--app-side-navigation-text-color: #d5d6db;
|
|
47
50
|
--app-side-navigation-link-color: #d5d6db;
|