mirror of https://gitlab.com/bashrc2/epicyon
Theme focus colors
parent
5d8289922a
commit
671d411f0f
4
theme.py
4
theme.py
|
@ -277,6 +277,7 @@ def setThemeNight(baseDir: str):
|
||||||
fontStr = \
|
fontStr = \
|
||||||
"url('./fonts/solidaric.woff2') format('woff2')"
|
"url('./fonts/solidaric.woff2') format('woff2')"
|
||||||
themeParams = {
|
themeParams = {
|
||||||
|
"focus-color": "blue",
|
||||||
"font-size-button-mobile": "36px",
|
"font-size-button-mobile": "36px",
|
||||||
"font-size": "32px",
|
"font-size": "32px",
|
||||||
"font-size2": "26px",
|
"font-size2": "26px",
|
||||||
|
@ -604,6 +605,7 @@ def setThemePurple(baseDir: str):
|
||||||
def setThemeHacker(baseDir: str):
|
def setThemeHacker(baseDir: str):
|
||||||
name = 'hacker'
|
name = 'hacker'
|
||||||
themeParams = {
|
themeParams = {
|
||||||
|
"focus-color": "green",
|
||||||
"main-bg-color": "black",
|
"main-bg-color": "black",
|
||||||
"link-bg-color": "black",
|
"link-bg-color": "black",
|
||||||
"main-bg-color-dm": "#0b0a0a",
|
"main-bg-color-dm": "#0b0a0a",
|
||||||
|
@ -653,6 +655,7 @@ def setThemeHacker(baseDir: str):
|
||||||
def setThemeLight(baseDir: str):
|
def setThemeLight(baseDir: str):
|
||||||
name = 'light'
|
name = 'light'
|
||||||
themeParams = {
|
themeParams = {
|
||||||
|
"focus-color": "grey",
|
||||||
"font-size-button-mobile": "36px",
|
"font-size-button-mobile": "36px",
|
||||||
"font-size": "32px",
|
"font-size": "32px",
|
||||||
"font-size2": "26px",
|
"font-size2": "26px",
|
||||||
|
@ -707,6 +710,7 @@ def setThemeLight(baseDir: str):
|
||||||
def setThemeSolidaric(baseDir: str):
|
def setThemeSolidaric(baseDir: str):
|
||||||
name = 'solidaric'
|
name = 'solidaric'
|
||||||
themeParams = {
|
themeParams = {
|
||||||
|
"focus-color": "grey",
|
||||||
"font-size-button-mobile": "36px",
|
"font-size-button-mobile": "36px",
|
||||||
"font-size": "32px",
|
"font-size": "32px",
|
||||||
"font-size2": "26px",
|
"font-size2": "26px",
|
||||||
|
|
Loading…
Reference in New Issue