Fix for #3145 (improved contrast for epub reader headline)

master
Ozzie Isaacs 5 days ago
parent 10d0542e05
commit 89a1dcfbf6

@ -15,5 +15,5 @@
.blackTheme { .blackTheme {
background: #000; background: #000;
color: #fff color: #fff;
} }

@ -135,19 +135,23 @@
window.themes = { window.themes = {
"darkTheme": { "darkTheme": {
"bgColor": "#202124", "bgColor": "#202124",
"css_path": "{{ url_for('static', filename='css/epub_themes.css') }}" "css_path": "{{ url_for('static', filename='css/epub_themes.css') }}",
"title-color": "#fff"
}, },
"lightTheme": { "lightTheme": {
"bgColor": "white", "bgColor": "white",
"css_path": "{{ url_for('static', filename='css/epub_themes.css') }}" "css_path": "{{ url_for('static', filename='css/epub_themes.css') }}",
"title-color": "#4f4f4f"
}, },
"sepiaTheme": { "sepiaTheme": {
"bgColor": "#ece1ca", "bgColor": "#ece1ca",
"css_path": "{{ url_for('static', filename='css/epub_themes.css') }}" "css_path": "{{ url_for('static', filename='css/epub_themes.css') }}",
"title-color": "#4f4f4f"
}, },
"blackTheme": { "blackTheme": {
"bgColor": "black", "bgColor": "black",
"css_path": "{{ url_for('static', filename='css/epub_themes.css') }}" "css_path": "{{ url_for('static', filename='css/epub_themes.css') }}",
"title-color": "#fff"
}, },
}; };
@ -170,6 +174,7 @@
// Apply theme to rest of the page. // Apply theme to rest of the page.
document.getElementById("main").style.backgroundColor = themes[id]["bgColor"]; document.getElementById("main").style.backgroundColor = themes[id]["bgColor"];
document.getElementById("titlebar").style.color = themes[id]["title-color"] || "#fff";
} }
// font size settings logic // font size settings logic

Loading…
Cancel
Save