-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
49 lines (43 loc) · 1.1 KB
/
Copy paththeme.css
File metadata and controls
49 lines (43 loc) · 1.1 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
:root {
/* bg colors */
--bg-primary-color: rgb(17, 17, 17);
--bg-secondary-color: rgb(34, 34, 34);
--bg-active-color: rgb(233, 233, 233);
--bg-danger-color: rgb(200,50,50);
--bg-success-color: rgb(30, 167, 30);
/*text colors*/
--text-primary-color: rgb(255, 255, 255);
--text-secondary-color: rgb(200, 200, 200);
--text-tertiary-color: rgb(150, 150, 150);
--text-active-color: rgb(24, 24, 24);
/* padding */
--padding-sm: 0.5rem;
--padding-md: 1rem;
--padding-lg: 1.5rem;
--padding-xl: 2rem;
--padding-2xl: 3rem;
/*margin*/
--margin-sm: 0.5rem;
--margin-md: 1rem;
--margin-lg: 1.5rem;
--margin-xl: 2rem;
--margin-2xl: 3rem;
/* gutter*/
--gutter-sm: 0.5rem;
--gutter-md: 1rem;
--gutter-lg: 1.5rem;
--gutter-xl: 2rem;
--gutter-2xl: 3rem;
/* font sizes */
--font-size-sm: 0.875rem;
--font-size-md: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
/*border radius*/
--border-radius-sm: 0.2rem;
--border-radius-md: 0.25rem;
--border-radius-lg: 0.3rem;
--border-radius-xl: 0.4rem;
--border-radius-2xl: 0.5rem;
}