diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-01-19 02:04:14 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-01-19 02:14:42 +0300 |
commit | a49223cac244a3c604d488e654d249362f9859b7 (patch) | |
tree | fd7b8603b1f5859037ee9149d700540b3738e83d /style.css | |
parent | 79b8987774b87ca6300f2454b6b0405043014fe9 (diff) | |
download | eug-vs-xyz-a49223cac244a3c604d488e654d249362f9859b7.tar.gz |
feat: use true gruvbox colors
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,9 +1,8 @@ html { - line-height: 1.5; - font-family: Roboto, sans-serif; + font-family: "Open Sans", sans-serif; font-size: 20px; - color: #f4f4f4; - background-color: #1e1e1e; + color: #ebdbb2; + background-color: #282828; } body { margin: 0 auto; @@ -27,13 +26,15 @@ p { margin: 1em 0; } a { - color: #ffa726; + color: #fabd2f; text-decoration: none; + font-weight: 550; } img { max-width: 100%; } h1, h2, h3, h4, h5, h6 { + font-weight: normal; margin-top: 1.4em; } h5, h6 { @@ -62,7 +63,7 @@ code { font-size: 85%; margin: 0; padding: 4px; - background: #121212; + background: #1d2021; border-radius: 4px; } pre { |