-
Notifications
You must be signed in to change notification settings - Fork 0
/
darkmode.css
127 lines (114 loc) · 2.88 KB
/
darkmode.css
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
118
119
120
121
122
123
124
125
126
127
body.dark-mode::-webkit-scrollbar {
-webkit-appearance: none;
transition: .5s;
width: 15px
}
body.dark-mode::-webkit-scrollbar-track {
background: rgb(36 31 112);
border-radius: 10px;
border: none;
box-shadow: inset 0 0 8px rgb(36 31 112)!important;
transition: .5s
}
body.dark-mode::-webkit-scrollbar-thumb {
background: #1c56b6;
border-radius: 10px;
transition: .5s
}
body.dark-mode::-webkit-scrollbar-thumb:hover, body.dark-mode::-webkit-scrollbar-thumb:active {
background: #156cfb;
transition: .5s
}
body.dark-mode ::selection {
color: #fff!important;
background: #1c56b6!important
}
body.dark-mode .rainbow-text{
background: url("midnight-title.jpg") 0 0 / cover no-repeat;
-webkit-background-clip: text;
-webkit-text-stroke: 5px rgb(0 135 255 / 37%);
/* -webkit-text-fill-color: transparent;*/
}
body.dark-mode {
background: rgb(36 31 112);
background: url('darkmode-bg-blur.png') no-repeat center center fixed;
background-size: cover;
}
body.dark-mode.main-page {
background: rgb(36 31 112);
background: url('dark-mode-bg.png') no-repeat center center fixed;
background-size: cover;
backdrop-filter: blur(6px);
}
body.dark-mode #loading{
background-color: rgb(36 31 112);
background-image: url("deepslate-loading.gif");
}
body.dark-mode .night-mode-button svg.day{
width: 30px;
visibility: visible;
opacity: 1;
}
body.dark-mode .night-mode-button svg.night{
visibility: hidden;
opacity: 0;
width: 0;
}
body.dark-mode .play-button{
background-color: #4e4e4e;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .5s ease-in-out;
}
body.dark-mode .play-button:hover{
background-color: #323232;
}
body.dark-mode .btn-secondary {
background-color: #4e4e4e;
border-color: #4e4e4e;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .5s ease-in-out;
}
body.dark-mode .btn-secondary:hover {
background-color: #323232;
}
body.dark-mode .dropdown-menu {
background-color: #4e4e4e;
}
body.dark-mode .dropdown-item {
background-color: #4e4e4e;
color: white;
}
body.dark-mode .dropdown-item:hover {
background-color: #323232;
}
body.dark-mode .text-dark-white {
color: white;
}
body.dark-mode.diff-bg{
background: url('About-dark-bg.png') no-repeat center center fixed;
background-size: cover;
}
body.dark-mode.diff-docs-bg{
background: url('docs-dark-bg.png') no-repeat center center fixed;
background-size: cover;
}
body.dark-mode h2.dark-text{
color: white
}
body.dark-mode h1.dark-text{
color: white
}
body.dark-mode p.dark-text{
color: white
}
body.dark-mode .docs-button{
background-color: #4e4e4e;
}
body.dark-mode .docs-button:hover{
background-color: #323232;
}
body.dark-mode ul.dark-text li{
color: white
}
body.dark-mode .c6 {
background-color: #ffffff;
color:#000000
}