Skip to content

Commit

Permalink
馃悰 Fix ul text color in EPUB reader
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronleopold committed Jan 20, 2024
1 parent 1b567ea commit 64bb12d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion interface/src/components/readers/epub/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ export interface EpubTheme {
export const stumpDark: EpubTheme = {
a: { color: '#4299E1' },
blockquote: { color: 'rgb(168 172 176) !important' },
body: { background: '#161719 !important' },
body: { background: '#161719 !important', color: '#E8EDF4' },
h1: { color: '#E8EDF4' },
h2: { color: '#E8EDF4' },
h3: { color: '#E8EDF4' },
h4: { color: '#E8EDF4' },
h5: { color: '#E8EDF4' },
p: { color: '#E8EDF4 !important', 'font-size': 'unset' },
span: { color: '#E8EDF4' },
ul: { color: '#E8EDF4' },
}

0 comments on commit 64bb12d

Please sign in to comment.