diff options
-rw-r--r-- | gruvbox.theme | 4 | ||||
-rwxr-xr-x | head.html | 3 | ||||
-rw-r--r-- | style.css | 13 |
3 files changed, 9 insertions, 11 deletions
diff --git a/gruvbox.theme b/gruvbox.theme index e159482..a945bf6 100644 --- a/gruvbox.theme +++ b/gruvbox.theme @@ -1,6 +1,6 @@ { - "text-color": "#ffffff", - "background-color": "#121212", + "text-color": "#ebdbb2", + "background-color": "#1d2021", "line-number-color": "#7a7c7d", "line-number-background-color": "#232629", "text-styles": { @@ -1,4 +1 @@ -<link rel="preconnect" href="https://fonts.googleapis.com"> -<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> -<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap" rel="stylesheet"> <link rel="shortcut icon" type="image/jpg" href="/public/icon-64.png"/> @@ -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 { |