aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Nicolas Veigel <art.jnveigel@gmail.com>2024-03-17 19:30:39 +0100
committerLouis Pilfold <louis@lpil.uk>2024-03-26 10:31:25 +0000
commit93c2ed091e2fb654dc018443ce292bc46d587b4d (patch)
tree1abea9676af0903ba5f08488a71c1fd488c39df5
parentf332d606402f48c42781043587e3b2ca3d79fc8a (diff)
downloadtour-93c2ed091e2fb654dc018443ce292bc46d587b4d.tar.gz
tour-93c2ed091e2fb654dc018443ce292bc46d587b4d.zip
style: tweak link color
-rw-r--r--static/css/root.css6
-rw-r--r--static/css/theme.css2
2 files changed, 4 insertions, 4 deletions
diff --git a/static/css/root.css b/static/css/root.css
index 4bdd8ce..c7ceb62 100644
--- a/static/css/root.css
+++ b/static/css/root.css
@@ -164,8 +164,8 @@ html.theme-light .theme-button.-light {
.link {
color: var(--color-text-accent);
text-decoration: underline;
- text-decoration-color: transparent;
- transition: background 150ms linear 0s, color 150ms ease-out 0s;
+ text-decoration-color: var(--color-accent-muted);
+ transition: background 150ms linear 0s, color 150ms ease-out 0s, text-decoration-color 150ms ease-out 0s;
}
.link:hover {
@@ -182,4 +182,4 @@ html.theme-light .theme-button.-light {
.link.padded,
.navbar .link {
padding: calc(var(--gap-quarter) * 0.5) var(--gap-quarter) 0;
-}
+} \ No newline at end of file
diff --git a/static/css/theme.css b/static/css/theme.css
index a85ccb1..878ffda 100644
--- a/static/css/theme.css
+++ b/static/css/theme.css
@@ -49,7 +49,7 @@ html.theme-dark {
--color-divider: var(--unexpected-aubergine);
--color-drop-shadow: var(--color-background-dim);
--color-accent-muted: var(--color-accent-dark);
- --color-text-accent: var(--color-accent);
+ --color-text-accent: var(--color-accent-light);
color-scheme: dark;
}