-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (47 loc) · 1.11 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (47 loc) · 1.11 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
:root {
--clr-dark: #020617;
--clr-light: #f1f5f9;
--clr-slate400: #94a3b8;
--clr-slare600: #475569;
--clr-slate800: #1e293b;
--clr-rose: #e11d48;
--clr-indigo: #4f46e5;
--clr-neutral800: #262626;
--clr-neutral900: #18181b;
--clr-text: #ffffff;
--clr-background: #1d1e22;
--clr-background_light: #2a2b2f;
--clr-primary: #3b82f6;
--clr-secondary: #6366f1;
--clr-accent: #f43f5e;
}
*,
::before,
::after {
box-sizing: border-box;
}
body {
font-family: 'General Sans', sans-serif;
/* background-color: var(--clr-neutral800); */
/* color: var(--clr-light); */
background-color: var(--clr-background);
color: var(--clr-text);
}
button {
/* background-color: #2d2d2d; */
background-color: var(--clr-primary);
/* color: #e5e5e5; */
color: var(--clr-text);
padding: 8px 16px;
border: 1px solid #444;
border-radius: 4px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.15s ease, color 0.15s ease;
}
button:hover {
background-color: #60a5fa;
}
button:active {
background-color: #1f1f1f;
}