generated from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_themes.scss
117 lines (99 loc) · 2.58 KB
/
_themes.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*******************************************************************************
* Themes
******************************************************************************/
:root {
--global-bg-color: #{$white-color};
--global-code-bg-color: #{$code-bg-color-light};
--global-text-color: #{$black-color};
--global-text-color-light: #{$grey-color};
--global-theme-color: #{$green-color-dark};
--global-hover-color: #{$purple-color};
--global-footer-bg-color: #{$grey-color-dark};
--global-footer-text-color: #{$grey-color-light};
--global-footer-link-color: #{$white-color};
--global-distill-app-color: #{$grey-color};
--global-divider-color: rgba(0, 0, 0, 0.1);
--global-divider-color: rgba(0, 0, 0, .1);
--global-card-bg-color: #{$white-color};
.fa-sun {
display: none;
}
.fa-moon {
padding-left: 10px;
padding-top: 12px;
display: block;
}
.repo-img-light {
display: block;
}
.repo-img-dark {
display: none;
}
#back-to-top {
color: var(--global-back-to-top-text-color);
background: var(--global-back-to-top-bg-color);
bottom: $back-to-top-bottom;
right: $back-to-top-right;
height: $back-to-top-height;
width: $back-to-top-width;
z-index: $back-to-top-z-index;
}
}
html[data-theme="dark"] {
--global-bg-color: #{$grey-color-dark};
--global-code-bg-color: #{$code-bg-color-dark};
--global-text-color: #{$grey-color-light};
--global-text-color-light: #{$grey-color-light};
--global-theme-color: #{$green-color-dark};
--global-hover-color: #{$purple-color};
--global-footer-bg-color: #{$grey-color-light};
--global-footer-text-color: #{$grey-color-dark};
--global-footer-link-color: #{$black-color};
--global-distill-app-color: #{$grey-color-light};
--global-divider-color: #424246;
--global-card-bg-color: #{$grey-900};
.fa-sun {
padding-left: 10px;
padding-top: 12px;
display: block;
}
.fa-moon {
display: none;
}
.repo-img-light {
display: none;
}
.repo-img-dark {
display: block;
}
}
html[data-theme-setting="dark"] {
#light-toggle-system {
display: none;
}
#light-toggle-dark {
padding-left: 10px;
padding-top: 12px;
display: block;
}
#light-toggle-light {
display: none;
}
#back-to-top {
color: var(--global-back-to-top-text-color);
background: var(--global-back-to-top-bg-color);
}
}
html[data-theme-setting="light"] {
#light-toggle-system {
display: none;
}
#light-toggle-dark {
display: none;
}
#light-toggle-light {
padding-left: 10px;
padding-top: 12px;
display: block;
}
}