-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.css
More file actions
40 lines (31 loc) · 963 Bytes
/
Copy pathcheck.css
File metadata and controls
40 lines (31 loc) · 963 Bytes
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
:root{
--bgColor-primary : #ffffff;
--bgColor-secondary : #f5f5f5;
--text-primary : #222222;
--text-secondary : #666666;
--accent-color : #3a86fe;
--border-color : #e0e0e0;
--shadow-soft : rgba(0, 0, 0, 0.05);
--section-padding : 5rem;
--transition-speed : 0.03s;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: var(--bgColor-primary);
color: var(--text-primary);
line-height: 1.6;
transition : background-color var(--transition-speed), color var(--transition-speed);
}
body.darkMode{
--bgColor-primary : #121212;
--bgColor-secondary : #1e1e1e;
--text-primary : #f0f0f0;
--text-secondary : #b0b0b0;
--border-color : #333333;
--shadow-soft : rgba(0, 0, 0, 0.3);
}