-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
54 lines (46 loc) · 1.62 KB
/
index.css
File metadata and controls
54 lines (46 loc) · 1.62 KB
1
2
3
4
5
6
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
@import 'tailwindcss' prefix(uizz);
@config './tailwind.config.js';
/*
The default border color has changed to `currentcolor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentcolor);
}
}
:root {
--eduzz-theme-primary: #0d2772;
--eduzz-theme-primary-rgb: 13, 38, 115;
--eduzz-theme-secondary: #ffbc00;
--eduzz-theme-secondary-rgb: 255, 188, 0;
--eduzz-ui-layout-topbar-height-rem: 4rem;
--eduzz-ui-layout-topbar-menu-min-width-rem: 16.25rem;
--eduzz-ui-layout-topbar-app-dropdown-width-rem: 21rem;
--eduzz-ui-layout-sidebar-width-rem: 15.5rem;
--eduzz-ui-layout-belt-color-white: #D9D9D9;
--eduzz-ui-layout-belt-color-red: #FF4141;
--eduzz-ui-layout-belt-color-orange: #FFA439;
--eduzz-ui-layout-belt-color-green: #33DB7A;
--eduzz-ui-layout-belt-color-black: #000000;
--eduzz-ui-layout-belt-color-golden: #FFCE00;
--eduzz-ui-layout-belt-foreground-white: #4D4D4D;
--eduzz-ui-layout-belt-foreground-red: #4D1414;
--eduzz-ui-layout-belt-foreground-orange: #4D3111;
--eduzz-ui-layout-belt-foreground-green: #124D2B;
--eduzz-ui-layout-belt-foreground-black: #FFFFFF;
--eduzz-ui-layout-belt-foreground-golden: #4D3E00;
}
html, body {
@apply uizz:font-sans uizz:text-base uizz:m-0
}
html:has(body[data-eduzz-theme="dark"]) {
color-scheme: dark;
}