forked from essentialsoft/ccdi-ods-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
37 lines (33 loc) · 983 Bytes
/
globals.css
File metadata and controls
37 lines (33 loc) · 983 Bytes
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
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--font-open-sans: var(--font-open-sans);
--font-poppins: var(--font-poppins);
--font-lato: var(--font-lato);
--font-inter: var(--font-inter);
--font-nunito-sans: var(--font-nunito-sans);
--font-nunito: var(--font-nunito);
--font-public-sans: var(--font-public-sans);
--font-rubik: var(--font-rubik);
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
/* Latest Updates (Gallery) desktop breakpoint: >1167px */
--breakpoint-gallery-lg: 72.9375rem; /* 1167px */
}
/* @media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
} */
body {
/* background: var(--background); */
background: #fff !important;
color: var(--foreground);
font-family: var(--font-open-sans), Arial, Helvetica, sans-serif;
}