mirror of https://gitlab.com/bashrc2/epicyon
Different colors for small buttons
parent
2df3fab4e5
commit
c8ef49161e
|
@ -18,7 +18,9 @@
|
||||||
--text-entry-background: #111;
|
--text-entry-background: #111;
|
||||||
--time-color: #aaa;
|
--time-color: #aaa;
|
||||||
--button-text: #FFFFFF;
|
--button-text: #FFFFFF;
|
||||||
|
--button-small-text: #FFFFFF;
|
||||||
--button-background: #999;
|
--button-background: #999;
|
||||||
|
--button-small-background: #999;
|
||||||
--button-selected: #666;
|
--button-selected: #666;
|
||||||
--hashtag-margin: 2%;
|
--hashtag-margin: 2%;
|
||||||
--hashtag-vertical-spacing1: 50px;
|
--hashtag-vertical-spacing1: 50px;
|
||||||
|
@ -148,10 +150,10 @@ textarea {
|
||||||
}
|
}
|
||||||
.buttonsmall {
|
.buttonsmall {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background-color: var(--button-background);
|
background-color: var(--button-small-background);
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--button-text);
|
color: var(--button-small-text);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
|
@ -203,10 +205,10 @@ textarea {
|
||||||
}
|
}
|
||||||
.buttonsmall {
|
.buttonsmall {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background-color: var(--button-background);
|
background-color: var(--button-small-background);
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
border: none;
|
border: none;
|
||||||
color: var(--button-text);
|
color: var(--button-small-text);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-size: 40px;
|
font-size: 40px;
|
||||||
|
|
7
theme.py
7
theme.py
|
@ -341,6 +341,7 @@ def setThemeStarlight(baseDir: str):
|
||||||
"hashtag-vertical-spacing3": "100px",
|
"hashtag-vertical-spacing3": "100px",
|
||||||
"hashtag-vertical-spacing4": "150px",
|
"hashtag-vertical-spacing4": "150px",
|
||||||
"button-background": "#69282c",
|
"button-background": "#69282c",
|
||||||
|
"button-small-background": "darkblue",
|
||||||
"button-selected": "#a34046",
|
"button-selected": "#a34046",
|
||||||
"button-highlighted": "#12435f",
|
"button-highlighted": "#12435f",
|
||||||
"button-fg-highlighted": "white",
|
"button-fg-highlighted": "white",
|
||||||
|
@ -501,7 +502,9 @@ def setThemeLCD(baseDir: str):
|
||||||
"button-selected": "black",
|
"button-selected": "black",
|
||||||
"button-highlighted": "green",
|
"button-highlighted": "green",
|
||||||
"button-background": "#33390d",
|
"button-background": "#33390d",
|
||||||
|
"button-small-background": "#33390d",
|
||||||
"button-text": "#9fb42b",
|
"button-text": "#9fb42b",
|
||||||
|
"button-small-text": "#9fb42b",
|
||||||
"color: #FFFFFE;": "color: #9fb42b;",
|
"color: #FFFFFE;": "color: #9fb42b;",
|
||||||
"calendar-bg-color": "#eee",
|
"calendar-bg-color": "#eee",
|
||||||
"day-number": "#3f2145",
|
"day-number": "#3f2145",
|
||||||
|
@ -568,7 +571,9 @@ def setThemePurple(baseDir: str):
|
||||||
"main-visited-color": "#f93bb0",
|
"main-visited-color": "#f93bb0",
|
||||||
"button-selected": "#c042a0",
|
"button-selected": "#c042a0",
|
||||||
"button-background": "#ff42a0",
|
"button-background": "#ff42a0",
|
||||||
|
"button-small-background": "#ff42a0",
|
||||||
"button-text": "white",
|
"button-text": "white",
|
||||||
|
"button-small-text": "white",
|
||||||
"color: #FFFFFE;": "color: #1f152d;",
|
"color: #FFFFFE;": "color: #1f152d;",
|
||||||
"calendar-bg-color": "#eee",
|
"calendar-bg-color": "#eee",
|
||||||
"lines-color": "#ff42a0",
|
"lines-color": "#ff42a0",
|
||||||
|
@ -612,7 +617,9 @@ def setThemeHacker(baseDir: str):
|
||||||
"main-visited-color": "#3c8234",
|
"main-visited-color": "#3c8234",
|
||||||
"button-selected": "#063200",
|
"button-selected": "#063200",
|
||||||
"button-background": "#062200",
|
"button-background": "#062200",
|
||||||
|
"button-small-background": "#062200",
|
||||||
"button-text": "#00ff00",
|
"button-text": "#00ff00",
|
||||||
|
"button-small-text": "#00ff00",
|
||||||
"button-corner-radius": "4px",
|
"button-corner-radius": "4px",
|
||||||
"timeline-border-radius": "4px",
|
"timeline-border-radius": "4px",
|
||||||
"*font-family": "'Bedstead'",
|
"*font-family": "'Bedstead'",
|
||||||
|
|
Loading…
Reference in New Issue