-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathhigh-contrast.css
More file actions
36 lines (30 loc) · 846 Bytes
/
high-contrast.css
File metadata and controls
36 lines (30 loc) · 846 Bytes
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
/* high-contrast.css */
body {
background-color: #000 !important;
color: #fff !important;
}
.card, header, footer, nav, section, .task-manager, .weather-widget {
background-color: #111 !important;
color: #fff !important;
border: 1px solid #fff !important;
}
button, input, select, textarea {
background-color: #000 !important;
color: #fff !important;
border: 1px solid #fff !important;
}
/* === Accessibility Controls - High Contrast Mode === */
#accessibility-controls {
background-color: #000 !important;
border-bottom: 1px solid #ecdfdf !important;
}
#accessibility-controls button {
background-color: #edcece !important;
color: #000 !important;
border: 2px solid #fff !important;
font-weight: bold;
}
#accessibility-controls button:hover {
background-color: #e8d0d0 !important;
color: #000 !important;
}