unify some of the colors in light vs. dark

This commit is contained in:
Brian S. Stephan 2022-01-02 22:52:08 -06:00
parent 69feb0c29c
commit 35ea94185b
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 16 additions and 34 deletions

View File

@ -2,11 +2,11 @@
@import '/static/css/base.css'; @import '/static/css/base.css';
html { html {
color: #CCC; color: #DDD;
} }
body { body {
background: black; background: #090909;
} }
strong { strong {
@ -14,7 +14,7 @@ strong {
} }
.site-wrap { .site-wrap {
background: #111; background: black;
border: 1px solid #222; border: 1px solid #222;
border-top: none; border-top: none;
@ -22,7 +22,7 @@ strong {
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
color: #B31D15; color: #811610;
} }
a:link, a:visited { a:link, a:visited {
@ -31,8 +31,8 @@ a:link, a:visited {
} }
a:hover, a:active { a:hover, a:active {
color: #B31D15; color: #811610;
border-bottom: 1px dotted #B31D15; border-bottom: 1px dotted #811610;
} }
div.header { div.header {
@ -62,12 +62,3 @@ blockquote {
background-color: rgba(255, 255, 255, 0.1); background-color: rgba(255, 255, 255, 0.1);
border: 1px solid #333; border: 1px solid #333;
} }
figure {
background: #222;
border: 1px solid #333;
}
figcaption {
color: #BBB;
}

View File

@ -6,7 +6,7 @@ html {
} }
body { body {
background: #999; background: #F6F6F6;
} }
strong { strong {
@ -16,7 +16,7 @@ strong {
.site-wrap { .site-wrap {
background: white; background: white;
border: 1px solid #ddd; border: 1px solid #DDD;
border-top: none; border-top: none;
border-bottom: none; border-bottom: none;
} }
@ -36,38 +36,29 @@ a:hover, a:active {
} }
div.header { div.header {
background: #EEE; background: #DDD;
border-bottom: 1px solid #CCC; border-bottom: 1px solid #DDD;
color: #666; color: #444;
} }
div.header a { div.header a {
color: #666; color: #444;
} }
table, th, td { table, th, td {
border: 1px solid #ccc; border: 1px solid #CCC;
} }
th { th {
background: #eee; background: #CCC;
} }
blockquote { blockquote {
background-color: rgba(120, 120, 120, 0.1); background-color: rgba(120, 120, 120, 0.1);
border: 1px solid #CCC; border: 1px solid #DDD;
} }
.img-frame { .img-frame {
background-color: rgba(0, 0, 0, 0.1); background-color: rgba(0, 0, 0, 0.1);
border: 1px solid #BBB; border: 1px solid #CCC;
}
figure {
background: #EFEFEF;
border: 1px solid #CCCCCC;
}
figcaption {
color: #777777;
} }