minor color shade tweaks

This commit is contained in:
Geoff Doty 2026-07-11 12:43:43 -04:00
parent 5b4fe61557
commit a57ae5e1b0
1 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/*! Stylelite v:1.0.0 | MIT LICENSE | https://github.com/n2geoff/stylelite */ /*! Stylelite v:1.0.1 | MIT LICENSE | https://github.com/n2geoff/stylelite */
:root { :root {
--size: 1rem; --size: 1rem;
--radius: .3rem; --radius: .3rem;
@ -9,8 +9,8 @@
--light: #F0F0F0; --light: #F0F0F0;
--dark: #404040; --dark: #404040;
--default: #EEE; --default: #DDD;
--primary: var(--theme, #5499C7); /* 0000EE */ --primary: var(--theme, #5499C7);
--secondary: #404040; --secondary: #404040;
--success: #198754; --success: #198754;
@ -22,7 +22,7 @@
--foreground: #FFF; --foreground: #FFF;
--background: #222; --background: #222;
--default: #333; --default: #444;
} }
html, body { html, body {
@ -121,7 +121,7 @@ blockquote {
button {font-family: Verdana, Geneva, Tahoma, sans-serif;border-radius: var(--radius);} button {font-family: Verdana, Geneva, Tahoma, sans-serif;border-radius: var(--radius);}
button:hover, input[type="reset"]:hover,input[type="submit"]:hover { button:hover, input[type="reset"]:hover,input[type="submit"]:hover {
filter:brightness(90%) !important; filter:brightness(94%) !important;
cursor: pointer; cursor: pointer;
} }
@ -246,7 +246,7 @@ nav a {text-decoration: none;color: var(--primary)}
.primary {color: var(--light); background: var(--primary);} .primary {color: var(--light); background: var(--primary);}
.secondary {color: var(--light); background: var(--secondary);} .secondary {color: var(--light); background: var(--secondary);}
.default {color: var(--dark); background: var(--light);} .default {color: var(--dark); background: var(--default);}
.dark {color: var(--light); background: var(--dark);} .dark {color: var(--light); background: var(--dark);}
.light {color: var(--dark); background: var(--light);} .light {color: var(--dark); background: var(--light);}