Humbl3m33 commited on
Commit
3660247
·
verified ·
1 Parent(s): 6d5c0e3

Uploaded Styles /global.css

Browse files
Files changed (1) hide show
  1. globals.css +92 -0
globals.css ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @layer utilities {
6
+ .text-balance {
7
+ text-wrap: balance;
8
+ }
9
+ }
10
+
11
+ @layer base {
12
+ :root {
13
+ --font-sans: var(--font-geist-sans);
14
+ --font-mono: var(--font-geist-mono);
15
+ --background: 0 0% 100%;
16
+ --foreground: 0 0% 3.9%;
17
+ --card: 0 0% 100%;
18
+ --card-foreground: 0 0% 3.9%;
19
+ --popover: 0 0% 100%;
20
+ --popover-foreground: 0 0% 3.9%;
21
+ --primary: 0 0% 9%;
22
+ --primary-foreground: 0 0% 98%;
23
+ --secondary: 0 0% 96.1%;
24
+ --secondary-foreground: 0 0% 9%;
25
+ --muted: 0 0% 96.1%;
26
+ --muted-foreground: 0 0% 45.1%;
27
+ --accent: 0 0% 96.1%;
28
+ --accent-foreground: 0 0% 9%;
29
+ --destructive: 0 84.2% 60.2%;
30
+ --destructive-foreground: 0 0% 98%;
31
+ --border: 0 0% 89.8%;
32
+ --input: 0 0% 89.8%;
33
+ --ring: 0 0% 3.9%;
34
+ --chart-1: 12 76% 61%;
35
+ --chart-2: 173 58% 39%;
36
+ --chart-3: 197 37% 24%;
37
+ --chart-4: 43 74% 66%;
38
+ --chart-5: 27 87% 67%;
39
+ --radius: 0.5rem;
40
+ --sidebar-background: 0 0% 98%;
41
+ --sidebar-foreground: 240 5.3% 26.1%;
42
+ --sidebar-primary: 240 5.9% 10%;
43
+ --sidebar-primary-foreground: 0 0% 98%;
44
+ --sidebar-accent: 240 4.8% 95.9%;
45
+ --sidebar-accent-foreground: 240 5.9% 10%;
46
+ --sidebar-border: 220 13% 91%;
47
+ --sidebar-ring: 217.2 91.2% 59.8%;
48
+ }
49
+ .dark {
50
+ --background: 0 0% 3.9%;
51
+ --foreground: 0 0% 98%;
52
+ --card: 0 0% 3.9%;
53
+ --card-foreground: 0 0% 98%;
54
+ --popover: 0 0% 3.9%;
55
+ --popover-foreground: 0 0% 98%;
56
+ --primary: 0 0% 98%;
57
+ --primary-foreground: 0 0% 9%;
58
+ --secondary: 0 0% 14.9%;
59
+ --secondary-foreground: 0 0% 98%;
60
+ --muted: 0 0% 14.9%;
61
+ --muted-foreground: 0 0% 63.9%;
62
+ --accent: 0 0% 14.9%;
63
+ --accent-foreground: 0 0% 98%;
64
+ --destructive: 0 62.8% 30.6%;
65
+ --destructive-foreground: 0 0% 98%;
66
+ --border: 0 0% 14.9%;
67
+ --input: 0 0% 14.9%;
68
+ --ring: 0 0% 83.1%;
69
+ --chart-1: 220 70% 50%;
70
+ --chart-2: 160 60% 45%;
71
+ --chart-3: 30 80% 55%;
72
+ --chart-4: 280 65% 60%;
73
+ --chart-5: 340 75% 55%;
74
+ --sidebar-background: 240 5.9% 10%;
75
+ --sidebar-foreground: 240 4.8% 95.9%;
76
+ --sidebar-primary: 224.3 76.3% 48%;
77
+ --sidebar-primary-foreground: 0 0% 100%;
78
+ --sidebar-accent: 240 3.7% 15.9%;
79
+ --sidebar-accent-foreground: 240 4.8% 95.9%;
80
+ --sidebar-border: 240 3.7% 15.9%;
81
+ --sidebar-ring: 217.2 91.2% 59.8%;
82
+ }
83
+ }
84
+
85
+ @layer base {
86
+ * {
87
+ @apply border-border;
88
+ }
89
+ body {
90
+ @apply bg-background text-foreground;
91
+ }
92
+ }