mirror of https://gitlab.com/bashrc2/epicyon
Separate title color
parent
f3ec2133da
commit
6677ff83a9
|
@ -50,6 +50,7 @@
|
|||
--button-corner-radius: 15px;
|
||||
--timeline-border-radius: 30px;
|
||||
--icons-side: right;
|
||||
--title-color: #999;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
@ -72,6 +73,10 @@ body, html {
|
|||
font-size: var(--font-size);
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: var(--title-color);
|
||||
}
|
||||
|
||||
a, u {
|
||||
color: var(--main-fg-color);
|
||||
}
|
||||
|
|
7
theme.py
7
theme.py
|
@ -329,6 +329,7 @@ def setThemeStarlight(baseDir: str):
|
|||
"text-entry-background": "#0f0d10",
|
||||
"link-bg-color": "#0f0d10",
|
||||
"main-link-color": "#ffc4bc",
|
||||
"title-color": "#ffc4bc",
|
||||
"main-visited-color": "#e1c4bc",
|
||||
"main-fg-color": "#ffc4bc",
|
||||
"main-bg-color-dm": "#0b0a0a",
|
||||
|
@ -383,6 +384,7 @@ def setThemeHenge(baseDir: str):
|
|||
"text-entry-background": "#383335",
|
||||
"link-bg-color": "#383335",
|
||||
"main-link-color": "white",
|
||||
"title-color": "white",
|
||||
"main-visited-color": "#e1c4bc",
|
||||
"main-fg-color": "white",
|
||||
"main-bg-color-dm": "#343335",
|
||||
|
@ -433,6 +435,7 @@ def setThemeZen(baseDir: str):
|
|||
"border-color": "#463b35",
|
||||
"border-width": "7px",
|
||||
"main-link-color": "#dddddd",
|
||||
"title-color": "#dddddd",
|
||||
"main-visited-color": "#dddddd",
|
||||
"button-background": "#463b35",
|
||||
"button-selected": "#26201d",
|
||||
|
@ -492,6 +495,7 @@ def setThemeLCD(baseDir: str):
|
|||
"border-color": "#33390d",
|
||||
"border-width": "5px",
|
||||
"main-link-color": "#9fb42b",
|
||||
"title-color": "#9fb42b",
|
||||
"main-visited-color": "#9fb42b",
|
||||
"button-selected": "black",
|
||||
"button-highlighted": "green",
|
||||
|
@ -559,6 +563,7 @@ def setThemePurple(baseDir: str):
|
|||
"main-fg-color": "#f98bb0",
|
||||
"border-color": "#3f2145",
|
||||
"main-link-color": "#ff42a0",
|
||||
"title-color": "white",
|
||||
"main-visited-color": "#f93bb0",
|
||||
"button-selected": "#c042a0",
|
||||
"button-background": "#ff42a0",
|
||||
|
@ -602,6 +607,7 @@ def setThemeHacker(baseDir: str):
|
|||
"main-fg-color": "#00ff00",
|
||||
"border-color": "#035103",
|
||||
"main-link-color": "#2fff2f",
|
||||
"title-color": "#2fff2f",
|
||||
"main-visited-color": "#3c8234",
|
||||
"button-selected": "#063200",
|
||||
"button-background": "#062200",
|
||||
|
@ -655,6 +661,7 @@ def setThemeLight(baseDir: str):
|
|||
"main-fg-color": "#2d2c37",
|
||||
"border-color": "#c0cdd9",
|
||||
"main-link-color": "#2a2c37",
|
||||
"title-color": "#2a2c37",
|
||||
"main-visited-color": "#232c37",
|
||||
"text-entry-foreground": "#111",
|
||||
"text-entry-background": "white",
|
||||
|
|
Loading…
Reference in New Issue