From b10cd7486afd8096b6970e0700f605f814fc5824 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 20 Dec 2020 14:40:43 +0000 Subject: [PATCH] Options screen link color --- epicyon-options.css | 18 +++++++++--------- theme/debian/theme.json | 3 +++ 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/epicyon-options.css b/epicyon-options.css index 1675d65da..aaff9989b 100644 --- a/epicyon-options.css +++ b/epicyon-options.css @@ -4,8 +4,8 @@ --options-bg-color: #282c37; --options-link-bg-color: transparent; --options-fg-color: #dddddd; - --main-link-color: #999; - --main-visited-color: #888; + --options-main-link-color: #999; + --options-main-visited-color: #888; --border-color: #505050; --font-size-header: 18px; --font-color-header: #ccc; @@ -34,7 +34,7 @@ --follow-text-entry-width: 90%; --focus-color: white; --petname-width-chars: 16ch; - --main-link-color-hover: #bbb; + --options-main-link-color-hover: #bbb; } @font-face { @@ -73,25 +73,25 @@ a, u { } a:visited{ - color: var(--main-visited-color); + color: var(--options-main-visited-color); background: var(--options-link-bg-color); font-weight: normal; text-decoration: none; } a:link { - color: var(--main-link-color); + color: var(--options-main-link-color); background: var(--options-link-bg-color); font-weight: normal; text-decoration: none; } a:link:hover { - color: var(--main-link-color-hover); + color: var(--options-main-link-color-hover); } a:visited:hover { - color: var(--main-link-color-hover); + color: var(--options-main-link-color-hover); } a:focus { @@ -116,12 +116,12 @@ a:focus { .imText { font-size: var(--font-size4); - color: var(--main-link-color); + color: var(--options-main-link-color); } .pgp { font-size: var(--font-size5); - color: var(--main-link-color); + color: var(--options-main-link-color); background: var(--options-link-bg-color); } diff --git a/theme/debian/theme.json b/theme/debian/theme.json index a373ed144..126109ff0 100644 --- a/theme/debian/theme.json +++ b/theme/debian/theme.json @@ -1,5 +1,6 @@ { "today-circle": "#03a494", + "options-main-link-color-hover": "white", "main-link-color-hover": "blue", "font-size-newswire-mobile": "32px", "newswire-date-color": "#00a594", @@ -58,8 +59,10 @@ "border-width": "1px", "border-width-header": "1px", "main-link-color": "darkblue", + "options-main-link-color": "lightgrey", "title-color": "#2a2c37", "main-visited-color": "#232c37", + "options-main-visited-color": "#ccc", "text-entry-foreground": "#111", "text-entry-background": "white", "font-color-header": "black",