Henge theme
After Width: | Height: | Size: 122 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 980 B |
After Width: | Height: | Size: 978 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 969 B |
After Width: | Height: | Size: 284 KiB |
53
theme.py
|
@ -18,7 +18,7 @@ def getThemesList() -> []:
|
|||
also used to create the web interface dropdown list
|
||||
and to lookup function names
|
||||
"""
|
||||
return ('Default', 'Blue', 'Hacker', 'HighVis',
|
||||
return ('Default', 'Blue', 'Hacker', 'Henge', 'HighVis',
|
||||
'LCD', 'Light', 'Night', 'Purple', 'Starlight', 'Zen')
|
||||
|
||||
|
||||
|
@ -277,6 +277,57 @@ def setThemeStarlight(baseDir: str):
|
|||
setThemeFromDict(baseDir, 'starlight', themeParams)
|
||||
|
||||
|
||||
def setThemeHenge(baseDir: str):
|
||||
removeTheme(baseDir)
|
||||
setThemeInConfig(baseDir, 'henge')
|
||||
themeParams = {
|
||||
"font-size-button-mobile": "36px",
|
||||
"font-size": "32px",
|
||||
"font-size2": "26px",
|
||||
"font-size3": "40px",
|
||||
"font-size4": "24px",
|
||||
"font-size5": "22px",
|
||||
"main-bg-color": "#20260e",
|
||||
"text-entry-background": "#20260e",
|
||||
"link-bg-color": "#20260e",
|
||||
"main-link-color": "#ffc4bc",
|
||||
"main-visited-color": "#e1c4bc",
|
||||
"main-fg-color": "#ffc4bc",
|
||||
"main-bg-color-dm": "#0b0a0a",
|
||||
"border-color": "#69282c",
|
||||
"border-width": "3px",
|
||||
"main-bg-color-reply": "#20260e",
|
||||
"main-bg-color-report": "#20260e",
|
||||
"hashtag-vertical-spacing3": "100px",
|
||||
"hashtag-vertical-spacing4": "150px",
|
||||
"button-background": "#69282c",
|
||||
"button-selected": "#a34046",
|
||||
"calendar-bg-color": "#20260e",
|
||||
"title-text": "#ffc4bc",
|
||||
"title-background": "#69282c",
|
||||
"lines-color": "#ffc4bc",
|
||||
"day-number": "#ffc4bc",
|
||||
"day-number2": "#aaa",
|
||||
"event-background": "#111",
|
||||
"cw-glow-radius1": "30px",
|
||||
"cw-glow-radius2": "40px",
|
||||
"cw-glow-radius3": "50px",
|
||||
"cw-glow-radius4": "60px",
|
||||
"cw-glow-radius5": "70px",
|
||||
"cw-glow-color1": "#a3d5f0",
|
||||
"cw-glow-color2": "#a3d5f0",
|
||||
"cw-glow-color3": "#a3d5f0",
|
||||
"cw-glow-color4": "#a3d5f0",
|
||||
"cw-glow-color5": "#a3d5f0",
|
||||
"cw-background": "#20260e",
|
||||
"timeline-border-radius": "20px",
|
||||
"image-corners": "8%",
|
||||
"*font-family": "'bgrove'",
|
||||
"*src": "url('fonts/bgrove.ttf') format('truetype')"
|
||||
}
|
||||
setThemeFromDict(baseDir, 'henge', themeParams)
|
||||
|
||||
|
||||
def setThemeZen(baseDir: str):
|
||||
removeTheme(baseDir)
|
||||
setThemeInConfig(baseDir, 'zen')
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "الخاص بك",
|
||||
"you're": "أنت على",
|
||||
"if you": "اذا أنت",
|
||||
"you are": "أنت"
|
||||
"you are": "أنت",
|
||||
"Henge": "هنج"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "la seva",
|
||||
"you're": "estàs",
|
||||
"if you": "si tu",
|
||||
"you are": "tu ets"
|
||||
"you are": "tu ets",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "eich",
|
||||
"you're": "ti",
|
||||
"if you": "os ydych",
|
||||
"you are": "yr ydych"
|
||||
"you are": "yr ydych",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "ihre",
|
||||
"you're": "du bist",
|
||||
"if you": "wenn du",
|
||||
"you are": "sie sind"
|
||||
"you are": "sie sind",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "your",
|
||||
"you're": "you're",
|
||||
"if you": "if you",
|
||||
"you are": "you are"
|
||||
"you are": "you are",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "tu",
|
||||
"you're": "tu eres",
|
||||
"if you": "si tu",
|
||||
"you are": "usted está"
|
||||
"you are": "usted está",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "votre",
|
||||
"you're": "tu es",
|
||||
"if you": "si tu",
|
||||
"you are": "tu es"
|
||||
"you are": "tu es",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "do",
|
||||
"you're": "tá tú",
|
||||
"if you": "má tá tú",
|
||||
"you are": "tá tú"
|
||||
"you are": "tá tú",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "तुम्हारी",
|
||||
"you're": "आप कर रहे हैं",
|
||||
"if you": "अगर तुम",
|
||||
"you are": "तुम हो"
|
||||
"you are": "तुम हो",
|
||||
"Henge": "हेंगे"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "il tuo",
|
||||
"you're": "sei",
|
||||
"if you": "se tu",
|
||||
"you are": "siete"
|
||||
"you are": "siete",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "君の",
|
||||
"you're": "あなたは",
|
||||
"if you": "もし、あんたが",
|
||||
"you are": "あなたは"
|
||||
"you are": "あなたは",
|
||||
"Henge": "ヘンゲ"
|
||||
}
|
||||
|
|
|
@ -232,5 +232,6 @@
|
|||
"your": "your",
|
||||
"you're": "you're",
|
||||
"if you": "if you",
|
||||
"you are": "you are"
|
||||
"you are": "you are",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "sua",
|
||||
"you're": "você é",
|
||||
"if you": "se vocês",
|
||||
"you are": "tu es"
|
||||
"you are": "tu es",
|
||||
"Henge": "Henge"
|
||||
}
|
||||
|
|
|
@ -236,5 +236,6 @@
|
|||
"your": "ваш",
|
||||
"you're": "Вы",
|
||||
"if you": "если ты",
|
||||
"you are": "ты"
|
||||
"you are": "ты",
|
||||
"Henge": "Хендж"
|
||||
}
|
||||
|
|
|
@ -235,5 +235,6 @@
|
|||
"your": "您的",
|
||||
"you're": "你是",
|
||||
"if you": "如果你",
|
||||
"you are": "你是"
|
||||
"you are": "你是",
|
||||
"Henge": "亨格"
|
||||
}
|
||||
|
|