diff options
Diffstat (limited to 'src/content/style.css')
-rw-r--r-- | src/content/style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/content/style.css b/src/content/style.css index cbe615b..dbd7967 100644 --- a/src/content/style.css +++ b/src/content/style.css @@ -5,6 +5,8 @@ --color-2nd-bg: #f5f5f5; --color-pre-border: hsla(0, 100%, 0%, 30%); + --link-url: url(img/link/light.svg); + color: var(--color-fg); background-color: var(--color-bg); } @@ -16,6 +18,8 @@ --color-2nd-fg: #aaaaaa; --color-2nd-bg: #222222; --color-pre-border: hsla(50, 100%, 70%, 10%); + + --link-url: url(img/link/dark.svg); } a { @@ -192,7 +196,7 @@ div.header-anchor:hover img { } a.anchor { - background: transparent url(img/link/light.svg) center right no-repeat; + background: transparent var(--link-url) center right no-repeat; padding-right: 22px; margin-left: 10px; visibility: hidden; |