-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
48 lines (41 loc) · 984 Bytes
/
styles.scss
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
@import 'tailwindcss/base';
@import 'base-styles.scss';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
:root {
--blue: #55b9f3;
--blue-rgb: 85, 185, 243;
--cyan: #55f3de;
--cyan-rgb: 85, 243, 222;
--dark-blue: #556af3;
--dark-blue-rgb: 85, 106, 243;
--gradient: linear-gradient(
145deg,
var(--cyan),
var(--blue),
var(--dark-blue)
);
}
body {
@apply bg-background text-color;
}
.dark {
--background: #121212;
--background-rgb: 18, 18, 18;
--tabs: #1c1c1c;
--text-color: #ffffff;
--text-color-light: #a0aec0;
--shadow-double: 7px 7px 10px #0b0b0b, -7px -7px 10px #191919;
}
.light {
--background: #ffffff;
--background-rgb: 255, 255, 255;
--tabs: #fafafa;
--text-color: #1a202c;
--text-color-light: #718096;
--shadow-double: 5px 5px 14px #ededed, -5px -5px 14px #fff;
}
.rotate niz-inline-svg {
transform: rotateZ(180deg);
}