-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
37 lines (31 loc) · 776 Bytes
/
global.css
File metadata and controls
37 lines (31 loc) · 776 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary: #5636A7;
--secondary: #9055FF;
--background: #F8F5FF;
--foreground:#ffffff;
--text: #333333;
--text-primary: #000000;
--border: #e0e0e0;
--font-family-serif: 'LibreBaskerville', Georgia, serif;
--font-family-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
--font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
--text-gray: #6c7393;
}
@media(prefers-color-scheme: dark) {
:root {
--primary: #9D71FF;
--secondary: #616161;
--background: #191818;
--foreground: #262626;
--text: #FFFFFF;
--text-primary: #ffffff;
--border: #595a5b;
--text-gray: #C0C0C0;
}
/*
2e046d
*/
}