From a1ff5ee5195206f3e17d35933e80b74dbe2880c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Sz=C3=BCcs?= <127139797+balazs-szucs@users.noreply.github.com> Date: Sat, 24 Jan 2026 17:35:32 +0100 Subject: [PATCH] feat(themes): add AMOLED theme with distinct light and dark color schemes (#2457) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Balázs Szücs --- .../features/readers/ebook-reader/state/themes.constant.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/booklore-ui/src/app/features/readers/ebook-reader/state/themes.constant.ts b/booklore-ui/src/app/features/readers/ebook-reader/state/themes.constant.ts index 37bef3133..1df0e9812 100644 --- a/booklore-ui/src/app/features/readers/ebook-reader/state/themes.constant.ts +++ b/booklore-ui/src/app/features/readers/ebook-reader/state/themes.constant.ts @@ -75,4 +75,9 @@ export const themes: Theme[] = [ light: {fg: '#4a148c', bg: '#f3e5f5', link: '#7b1fa2'}, dark: {fg: '#c7b6dd', bg: '#3a3150', link: '#b39ddb'}, }, + { + name: 'amoled', label: 'AMOLED', + light: {fg: '#000000', bg: '#ffffff', link: '#0066cc'}, + dark: {fg: '#ffffff', bg: '#000000', link: '#77bbee'}, + }, ];