mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-04 00:34:40 +01:00
Slight dulling of text brigthness in dark mode
This commit is contained in:
parent
a54604d2e3
commit
9d31105ad0
2 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
dark_link_color = QColor(dark_link_color)
|
||||
dark_color = QColor(45,45,45)
|
||||
dark_text_color = QColor('#eee')
|
||||
dark_text_color = QColor('#ddd')
|
||||
|
||||
|
||||
def dark_palette():
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ def apply_font_size():
|
|||
def default_selection_colors():
|
||||
if opts.is_dark_theme:
|
||||
return dark_link_color, '#111'
|
||||
return '#3297FD', '#eee'
|
||||
return '#3297FD', '#ddd'
|
||||
|
||||
|
||||
styles_id = 'calibre-color-scheme-style-overrides'
|
||||
|
|
|
|||
Loading…
Reference in a new issue