forked from indymedia/epicyon
Colors
parent
38b82391b0
commit
88734f5aca
|
@ -95,6 +95,7 @@
|
|||
--button-event-background-color: green;
|
||||
--button-event-fg-color: white;
|
||||
--hashtag-background-color: black;
|
||||
--hashtag-fg-color: white;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
@ -377,10 +378,12 @@ a:focus {
|
|||
|
||||
.addedHashtag:link {
|
||||
background-color: var(--hashtag-background-color);
|
||||
color: var(--hashtag-fg-color);
|
||||
}
|
||||
|
||||
.addedHashtag:visited {
|
||||
background-color: var(--hashtag-background-color);
|
||||
color: var(--hashtag-fg-color);
|
||||
}
|
||||
|
||||
.message:focus{
|
||||
|
|
17
theme.py
17
theme.py
|
@ -906,6 +906,8 @@ def setThemeLight(baseDir: str):
|
|||
def setThemeIndymediaModern(baseDir: str):
|
||||
name = 'indymediamodern'
|
||||
themeParams = {
|
||||
"login-button-color": "#25408f",
|
||||
"login-button-fg-color": "white",
|
||||
"column-left-width": "10vw",
|
||||
"column-center-width": "70vw",
|
||||
"column-right-width": "20vw",
|
||||
|
@ -916,6 +918,11 @@ def setThemeIndymediaModern(baseDir: str):
|
|||
"newswire-date-color": "grey",
|
||||
"button-corner-radius": "7px",
|
||||
"timeline-border-radius": "0px",
|
||||
"button-background": "#ddd",
|
||||
"button-background-hover": "#eee",
|
||||
"button-selected": "#eee",
|
||||
"hashtag-background-color": "#b2b2b2",
|
||||
"hashtag-fg-color": "white",
|
||||
"publish-button-background": "#25408f",
|
||||
"publish-button-text": "white",
|
||||
"hashtag-background-color": "lightblue",
|
||||
|
@ -934,13 +941,13 @@ def setThemeIndymediaModern(baseDir: str):
|
|||
"main-bg-color-reply": "white",
|
||||
"main-bg-color-report": "white",
|
||||
"main-header-color-roles": "#ebebf0",
|
||||
"main-fg-color": "#2d2c37",
|
||||
"column-left-fg-color": "#2d2c37",
|
||||
"main-fg-color": "black",
|
||||
"column-left-fg-color": "#25408f",
|
||||
"border-color": "#c0cdd9",
|
||||
"main-link-color": "#2a2c37",
|
||||
"main-link-color-hover": "#aa2c37",
|
||||
"main-link-color": "#25408f",
|
||||
"main-link-color-hover": "#10408f",
|
||||
"title-color": "#2a2c37",
|
||||
"main-visited-color": "#232c37",
|
||||
"main-visited-color": "#25408f",
|
||||
"text-entry-foreground": "#111",
|
||||
"text-entry-background": "white",
|
||||
"font-color-header": "black",
|
||||
|
|
Loading…
Reference in New Issue