-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleLightmode.css
More file actions
92 lines (77 loc) · 1.93 KB
/
StyleLightmode.css
File metadata and controls
92 lines (77 loc) · 1.93 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
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
<style>
/* Link colors */
a { color: #bbbb00; }
a:link { color: #bbbb00; }
a:visited { color: #bbbb00; }
a:hover { color: #757500; }
a.sublogo {
color: #000000; /* Inverted from white */
}
/* Body background and text color */
body {
background: #ededed; /* Light gray, inverted from #121212 */
color: #363636; /* Dark gray, inverted from #c9c9c9 */
}
/* Dropdown menu background */
#dropdownMenu {
background-color: #ffffff; /* White, inverted from black */
}
/* Vertical line color */
.vertical-line {
border-left: 1px solid #363636; /* Dark gray, inverted from light gray */
}
/* Code block border color */
.code {
border: 1px solid #000000; /* Black, inverted from white */
}
/* Button colors */
.button {
background-color: #ffffff; /* Inverted from black */
color: #ffffff;
}
.button:hover {
background-color: #e5e5e5; /* Light gray, inverted from #080808 */
}
.mainbutton {
background-color: #ffffff;
color: #ffffff;
border: 1px solid #000000;
}
.mainbutton:hover {
background-color: #e5e5e5;
}
/* Table border color */
td, table {
border-color: #cfcfcf; /* Light gray, inverted from dark gray */
}
/* Cookie container background and border color */
#cookie-container {
background-color: #ffffff; /* Inverted from black */
border: 1px solid #e9e9e9; /* Light gray, inverted from darker gray */
}
#close-cookie {
color: #000000; /* Inverted from white */
}
/* Input fields and textareas */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="time"],
input[type="date"],
input[type="datetime-local"],
input[type="search"],
textarea,
select {
background-color: #ffffff; /* Inverted from black */
color: #363636; /* Dark gray, inverted from light gray */
border: 0px solid #363636;
}
input[type="text"]::placeholder {
/* color: #363636; */
}
/* Checkbox accent color */
input[type="checkbox"] {
accent-color: #363636;
}
</style>