-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathglobals.css
More file actions
68 lines (53 loc) · 1.24 KB
/
globals.css
File metadata and controls
68 lines (53 loc) · 1.24 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: 0 0% 98%;
--foreground: 0 0% 100%;
--muted: 0 0% 100%;
--popover: 0 0% 100%;
--text-color: 93 17% 10%;
/* across teal */
--accent: 166 92% 70%;
/* gray */
--border: 220 14% 96%;
--ring: 166 92% 70%;
/* Leaving this here if we want to have different status colors for light/dark */
--success: 119 90% 35%;
--destructive: 0 100% 65%;
}
.dark {
--background: 230 6% 19%;
--foreground: 231.43 6.31% 21.76%;
--muted: 231.43 6.31% 21.76%;
--popover: 240 5.88% 13.33%;
--text-color: 204 30% 83%;
/* across teal */
--accent: 166 92% 70%;
/* gray */
--border: 226.67 5.52% 31.96%;
--border-secondary: 226.67 6.77% 26.08%;
--ring: 226.67 6.77% 60%;
/* Leaving this here if we want to have different status colors for light/dark */
--success: 133 56% 55%;
--destructive: 0 95% 66%;
}
/* remove arrows from number input */
@layer base {
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"] {
-webkit-appearance: none;
-moz-appearance: textfield !important;
}
h1,
h2,
h3,
h4,
h5,
p,
span,
div {
@apply text-text font-light;
}
}