-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathdusk2dawn.css
45 lines (37 loc) · 1.3 KB
/
dusk2dawn.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
/*
dusk2dawn.css - Dusk2Dawn: A dark theme css file for dmarcts-report-viewer, a PHP based viewer of parsed DMARC reports.
Copyright (C) 2021 John P. New
Available at:
https://github.com/techsneeze/dmarcts-report-viewer
This file is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
This file is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Include default.css */
@import "default.css";
/* All colors are controlled by the following section */
:root {
/* Ordered from darkest to lightest */
--text_over_colorbg: #000000;
--background: #292c2f;
--header: #4f555b;
--selected: #767c83;
--hover: #9aa1a8;
--shadow: #e1e9f0;
--text: #ffffff;
--link: #ff69b4;
--link_visited: #ff69b4;
--green: #85ff6a;
--yellow: #ffff64;
--orange: #ffb826;
--red: #ff4444;
--xml_highlighted: var(--hover);
--xml_pinned: var(--selected);
}