-
Notifications
You must be signed in to change notification settings - Fork 985
/
globals.less
138 lines (106 loc) · 3.46 KB
/
globals.less
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--background-light: 0 0% 100%;
--background-dark: 0 0% 0%;
--background-hover: 5 12% 100%;
--background-container: 0, 0%, 97%, 0.8;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-hover: 0 0% 97%;
--card-active: 0 0% 94.5%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 240 5.9% 10%;
--primary-foreground: 0 0% 98%;
--secondary: 240 4.8% 95.9%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-secondary: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 67.22% 50.59%;
--destructive-foreground: 0 0% 98%;
--success: 120 100% 50%;
--success-foreground: 0 0% 98%;
--failure: 0 67.22% 50.59%;
--failure-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--border-hover: 240 5.9% 85%;
--border-active: 240 5.9% 80%;
--input: 240 5.9% 90%;
--input-unread: 240 5.9% 50%;
--ring: 240 5% 64.9%;
--text: 0 0% 0%;
--text-light: 0 0% 100%;
--text-dark: 0 0% 100%;
--text-secondary: 0 0% 35%;
--text-secondary-dark: 0 0% 80%;
--selection: 212 100% 41%;
--selection-foreground: 0 0% 98%;
--radius: 0.5rem;
--shadow: #00000005;
--assistant-background: hsla(218, 100%, 64%, .04);
--assistant-border: hsla(218, 100%, 64%, .12);
--assistant-border-hover: hsla(218, 100%, 64%, .24);
--assistant-shadow: hsla(218, 100%, 64%, .03);
--gold: 45 100% 50%;
--link: 210 100% 63%;
--error: 20 80% 50%;
}
.dark {
--background: 0 0% 0%;
--background-hover: 0 0% 7.8%;
--background-container: 0, 0%, 7.8%, 0.8;
--foreground: 210 40% 98%;
--card: 240 10% 3.9%;
--card-hover: 240 11% 12.5%;
--card-active: 240 9.5% 19%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 210 40% 98%;
--primary-foreground: 222.2 47.4% 11.2%;
--secondary: 217.2 32.6% 17.5%;
--secondary-foreground: 210 40% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-secondary: 240 5% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;
--border: 240 3.7% 15.9%;
--border-hover: 240 3.7% 20.9%;
--border-active: 240 3.7% 25.9%;
--input: 240 3.7% 15.9%;
--input-unread: 240 3.7% 50%;
--ring: 240 4.9% 83.9%;
--text: 0 0% 100%;
--text-secondary: 0 0% 80%;
--shadow: #ffffff05;
--assistant-background: hsla(218, 100%, 64%, .1);
--assistant-border: hsla(218, 100%, 64%, .2);
--assistant-border-hover: hsla(218, 100%, 64%, .25);
--assistant-shadow: hsla(218, 100%, 64%, .05);
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
@apply border-border;
}
}
* {
--tw-ring-color: none !important;
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}