diff --git a/source/images/screenshot-dark.png b/source/images/screenshot-dark.png index e1105d0..62a4d1b 100644 Binary files a/source/images/screenshot-dark.png and b/source/images/screenshot-dark.png differ diff --git a/source/images/screenshot-light.png b/source/images/screenshot-light.png index 076dcae..fbe8b16 100644 Binary files a/source/images/screenshot-light.png and b/source/images/screenshot-light.png differ diff --git a/source/stylesheets/site.css.scss b/source/stylesheets/site.css.scss index 3fd5507..11056db 100644 --- a/source/stylesheets/site.css.scss +++ b/source/stylesheets/site.css.scss @@ -1,8 +1,8 @@ $light-color: white; $dark-color: #181818; -$light-link-color: #253FA1; -$dark-link-color: #75B3ED; +$light-link-color: #0050B3; +$dark-link-color: #80C6FF; body { background-color: $light-color; @@ -56,7 +56,7 @@ a { &:focus, &:hover { - color: rgba($dark-color, 0.6); + color: lighten($light-link-color, 20%); } @media (prefers-color-scheme: dark) { @@ -64,7 +64,7 @@ a { &:focus, &:hover { - color: rgba($light-color, 0.6); + color: lighten($dark-link-color, 10%); } } }