diff options
Diffstat (limited to 'static/css/common.css')
-rw-r--r-- | static/css/common.css | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/static/css/common.css b/static/css/common.css index e96f636..daba43b 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -1,3 +1,9 @@ +:root { + --green: #00916E; + --pearl: #DED4B9; + --brown: #554F41; +} + html { max-width: 80ch; padding-left: 1em; @@ -5,7 +11,7 @@ html { margin: auto; line-height: 1.75; font-size: 1.25em; - background-color: #64B6AC; + background-color: var(--green); } #main > .post + .post { @@ -55,7 +61,8 @@ ul { } body { - background-color: #DAFFEF; + background-color: var(--pearl); + color: #3C3525; display: flex; flex-direction: column; /* font-family: 'Latin Modern Roman', 'Times New Roman', serif; */ @@ -64,12 +71,12 @@ body { overflow-wrap: break-word; padding-top: 1rem; padding-bottom: 1rem; - border-left: 4px solid #46555e; - border-right: 4px solid #46555e; + border-left: 4px solid var(--brown); + border-right: 4px solid var(--brown); } a { - color: #46555e; + color: var(--brown); } a:hover { |