Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-viewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjnew-gh <github@hazelden.ca>2021-05-04 08:15:24 +0300
committerjnew-gh <github@hazelden.ca>2021-05-04 08:15:24 +0300
commit7ced8159928d75986239cb78a33d2d2eb8698338 (patch)
treeae081e8190723620564cca97d07c96337925bbd2
parent3d8e78003e9de25da9ddc9e991a249df2519d578 (diff)
Organize color scheme definitions
-rw-r--r--default.css28
-rw-r--r--dusk2dawn.css28
2 files changed, 30 insertions, 26 deletions
diff --git a/default.css b/default.css
index 4627e0e..f5cecd4 100644
--- a/default.css
+++ b/default.css
@@ -22,19 +22,21 @@ this program. If not, see <http://www.gnu.org/licenses/>.
/* All colors are controlled by the following section */
:root {
- --background: white;
- --text: black;
- --text_over_colorbg: #000000;
- --header: silver;
- --link: #0000EE;
- --link_visited: #551A8B;
- --hover: whitesmoke;
- --shadow: grey;
- --selected: gainsboro;
- --green: #00FF00;
- --yellow: #FFFF00;
- --orange: #FFA500;
- --red: #FF0000;
+ /* Ordered from darkest the lightest */
+ --text: black;
+ --text_over_colorbg: #000000;
+ --shadow: grey;
+ --header: silver;
+ --selected: gainsboro;
+ --hover: whitesmoke;
+ --background: white;
+
+ --link: #0000EE;
+ --link_visited: #551A8B;
+ --green: #00FF00;
+ --yellow: #FFFF00;
+ --orange: #FFA500;
+ --red: #FF0000;
--xml_highlighted: lightcyan;
--xml_pinned: #99ffff;
}
diff --git a/dusk2dawn.css b/dusk2dawn.css
index 87afb77..da96437 100644
--- a/dusk2dawn.css
+++ b/dusk2dawn.css
@@ -25,19 +25,21 @@ this program. If not, see <http://www.gnu.org/licenses/>.
/* All colors are controlled by the following section */
:root {
- --background: #292c2f;
- --text: #ffffff;
- --text_over_colorbg: #000000;
- --header: #4f555b;
- --link: #ff69b4;
- --link_visited: #ff69b4;
- --hover: #9aa1a8;
- --shadow: #e1e9f0;
- --selected: #767c83;
- --green: #85ff6a;
- --yellow: #ffff64;
- --orange: #ffb826;
- --red: #ff4444;
+ /* 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);
}