LCD theme colors

main
Bob Mottram 2020-05-28 14:06:07 +01:00
parent 3b0a3f4015
commit d5ff0f908f
4 changed files with 25 additions and 6 deletions

View File

@ -2,6 +2,7 @@
:root {
--main-bg-color: #282c37;
--link-bg-color: #282c37;
--dropdown-bg-color: #111;
--dropdown-bg-color-hover: #333;
--main-bg-color-reply: #212c37;
@ -68,11 +69,13 @@ a, u {
a:visited{
color: var(--main-visited-color);
background: var(--link-bg-color);
font-weight: bold;
}
a:link {
color: var(--main-link-color);
background: var(--link-bg-color);
font-weight: bold;
}
@ -342,12 +345,14 @@ a:link {
font-size: var(--font-size4);
font-family: "Times New Roman", Roman, serif;
color: var(--main-link-color);
background: var(--link-bg-color);
}
.pgp {
font-size: var(--font-size5);
font-family: "Times New Roman", Roman, serif;
color: var(--main-link-color);
background: var(--link-bg-color);
font-family: 'monospace';
}

View File

@ -2,6 +2,7 @@
:root {
--main-bg-color: #282c37;
--link-bg-color: #282c37;
--main-fg-color: #dddddd;
--main-link-color: #999;
--main-visited-color: #888;
@ -46,11 +47,13 @@ a, u {
a:visited{
color: var(--main-visited-color);
background: var(--link-bg-color);
font-weight: bold;
}
a:link {
color: var(--main-link-color);
background: var(--link-bg-color);
font-weight: bold;
}

View File

@ -2,6 +2,7 @@
:root {
--main-bg-color: #282c37;
--link-bg-color: #282c37;
--dropdown-bg-color: #111;
--dropdown-bg-color-hover: #333;
--main-bg-color-reply: #212c37;
@ -69,11 +70,13 @@ a, u {
a:visited{
color: var(--main-visited-color);
background: var(--link-bg-color);
font-weight: bold;
}
a:link {
color: var(--main-link-color);
background: var(--link-bg-color);
font-weight: bold;
}
@ -348,11 +351,13 @@ a:link {
font-size: var(--font-size4);
font-family: Arial, Helvetica, sans-serif;
color: var(--main-link-color);
background: var(--link-bg-color);
}
.pgp {
font-size: var(--font-size-pgp-key);
color: var(--main-link-color);
background: var(--link-bg-color);
font-family: 'monospace';
}

View File

@ -170,23 +170,24 @@ def setThemeHighVis(baseDir: str):
def setThemeLCD(baseDir: str):
themeParams = {
"main-bg-color": "#9fb42b",
"link-bg-color": "#33390d",
"main-bg-color-reply": "#1a142d",
"main-bg-color-report": "#12152d",
"main-header-color-roles": "#1f192d",
"main-fg-color": "#33390d",
"border-color": "#33390d",
"main-link-color": "#ff42a0",
"main-visited-color": "#f93bb0",
"button-selected": "#c042a0",
"button-background": "#ff42a0",
"button-text": "white",
"main-link-color": "#9fb42b",
"main-visited-color": "#9fb42b",
"button-selected": "#01b82b",
"button-background": "#65d82b",
"button-text": "black",
"background-color: #554;": "background-color: #ff42a0;",
"color: #FFFFFE;": "color: #9fb42b;",
"calendar-bg-color": "#eee",
"lines-color": "#ff42a0",
"day-number": "#3f2145",
"day-number2": "#9fb42b",
"time-color": "#ff42a0",
"time-color": "#9fb42b",
"place-color": "black",
"event-color": "#282c37",
"today-foreground": "white",
@ -204,6 +205,8 @@ def setThemeLCD(baseDir: str):
"font-size5": "29px",
"gallery-font-size": "35px",
"gallery-font-size-mobile": "55px",
"button-corner-radius": "1px",
"timeline-border-radius": "1px",
"*font-family": "'LcdSolid'",
"*src": "url('./fonts/LcdSolid.ttf') format('truetype')"
}
@ -213,6 +216,7 @@ def setThemeLCD(baseDir: str):
def setThemePurple(baseDir: str):
themeParams = {
"main-bg-color": "#1f152d",
"link-bg-color": "#1f152d",
"main-bg-color-reply": "#1a142d",
"main-bg-color-report": "#12152d",
"main-header-color-roles": "#1f192d",
@ -248,6 +252,7 @@ def setThemePurple(baseDir: str):
def setThemeHacker(baseDir: str):
themeParams = {
"main-bg-color": "black",
"link-bg-color": "black",
"main-bg-color-reply": "#030202",
"main-bg-color-report": "#050202",
"main-header-color-roles": "#1f192d",
@ -286,6 +291,7 @@ def setThemeLight(baseDir: str):
themeParams = {
"rgba(0, 0, 0, 0.5)": "rgba(0, 0, 0, 0.0)",
"main-bg-color": "#e6ebf0",
"link-bg-color": "#e6ebf0",
"main-bg-color-reply": "#e0dbf0",
"main-bg-color-report": "#e3dbf0",
"main-header-color-roles": "#ebebf0",