-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
98 lines (92 loc) · 2.59 KB
/
Copy pathindex.css
File metadata and controls
98 lines (92 loc) · 2.59 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--font-inter: 'Inter', sans-serif;
--background: 0 0% 0%;
--foreground: 0 0% 98%;
--card: 0 0% 7%;
--card-foreground: 0 0% 98%;
--popover: 0 0% 7%;
--popover-foreground: 0 0% 98%;
--primary: 55 100% 50%;
--primary-foreground: 0 0% 0%;
--secondary: 0 0% 14%;
--secondary-foreground: 0 0% 98%;
--muted: 0 0% 14%;
--muted-foreground: 0 0% 55%;
--accent: 280 80% 60%;
--accent-foreground: 0 0% 98%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 0 0% 18%;
--input: 0 0% 18%;
--ring: 55 100% 50%;
--chart-1: 55 100% 50%;
--chart-2: 280 80% 60%;
--chart-3: 200 90% 55%;
--chart-4: 340 80% 55%;
--chart-5: 150 70% 45%;
--radius: 1rem;
--sidebar-background: 0 0% 5%;
--sidebar-foreground: 0 0% 98%;
--sidebar-primary: 55 100% 50%;
--sidebar-primary-foreground: 0 0% 0%;
--sidebar-accent: 0 0% 14%;
--sidebar-accent-foreground: 0 0% 98%;
--sidebar-border: 0 0% 18%;
--sidebar-ring: 55 100% 50%;
}
.dark {
--background: 0 0% 0%;
--foreground: 0 0% 98%;
--card: 0 0% 7%;
--card-foreground: 0 0% 98%;
--popover: 0 0% 7%;
--popover-foreground: 0 0% 98%;
--primary: 55 100% 50%;
--primary-foreground: 0 0% 0%;
--secondary: 0 0% 14%;
--secondary-foreground: 0 0% 98%;
--muted: 0 0% 14%;
--muted-foreground: 0 0% 55%;
--accent: 280 80% 60%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 0 0% 18%;
--input: 0 0% 18%;
--ring: 55 100% 50%;
--chart-1: 55 100% 50%;
--chart-2: 280 80% 60%;
--chart-3: 200 90% 55%;
--chart-4: 340 80% 55%;
--chart-5: 150 70% 45%;
--sidebar-background: 0 0% 5%;
--sidebar-foreground: 0 0% 98%;
--sidebar-primary: 55 100% 50%;
--sidebar-primary-foreground: 0 0% 0%;
--sidebar-accent: 0 0% 14%;
--sidebar-accent-foreground: 0 0% 98%;
--sidebar-border: 0 0% 18%;
--sidebar-ring: 55 100% 50%;
}
}
@layer base {
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground font-inter;
}
}
/* Hide scrollbar for filter carousel */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}