1
0
mirror of https://github.com/danbee/persephone-web.git synced 2025-03-04 08:39:07 +00:00

Colours and sharper screenshots

This commit is contained in:
Daniel Barber 2019-11-19 20:38:20 -05:00
parent 1ae649f2f7
commit b7cdb78688
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8
3 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 407 KiB

After

Width:  |  Height:  |  Size: 476 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 408 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View File

@ -1,8 +1,8 @@
$light-color: white; $light-color: white;
$dark-color: #181818; $dark-color: #181818;
$light-link-color: #253FA1; $light-link-color: #0050B3;
$dark-link-color: #75B3ED; $dark-link-color: #80C6FF;
body { body {
background-color: $light-color; background-color: $light-color;
@ -56,7 +56,7 @@ a {
&:focus, &:focus,
&:hover { &:hover {
color: rgba($dark-color, 0.6); color: lighten($light-link-color, 20%);
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@ -64,7 +64,7 @@ a {
&:focus, &:focus,
&:hover { &:hover {
color: rgba($light-color, 0.6); color: lighten($dark-link-color, 10%);
} }
} }
} }