commit e8da5949b0a79f85597b16e4d544b29079c7a666
parent c752fc8638ae85929a2eadcce6bf637a050f2ef7
Author: Hunter
Date:   Wed, 12 Nov 2025 23:48:16 -0500

update themes

Diffstat:
Mscript.js | 2+-
Mstyle.css | 24++++++++++++------------
2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/script.js b/script.js @@ -993,7 +993,7 @@ window.addEventListener('afterprint', () => { // Theme system let currentThemeIndex = 0; let isF2Pressed = false; -const themes = ['sea-breeze', 'grape-soda', 'coral', 'guac', 'mojito', 'toast']; +const themes = ['sea-breeze', 'grape-soda', 'grapefruit', 'guac', 'mojito', 'toast']; function setTheme(theme) { document.documentElement.setAttribute('data-theme', theme); diff --git a/style.css b/style.css @@ -14,7 +14,7 @@ /* toast theme colors */ --butter: #ffe598; - --cream: #fffef9; + --white-wheat: #fffef9; --crumb: #decca3; --peanut-butter: #be852a; @@ -30,11 +30,11 @@ --concentrate: #b8a9dd; --syrup: #7c5cbe; - /* coral theme colors */ - --reef: #ff9b87; - --pearl: #fff8f6; - --sand: #f0bcb3; - --anemone: #ff6b51; + /* grapefruit theme colors */ + --rind: #ff9b87; + --pith: #fff8f6; + --pulp: #f0bcb3; + --ruby: #ff6b51; /* sea-breeze theme colors */ --cerulean: #a3d5ff; @@ -73,7 +73,7 @@ :root[data-theme="toast"] { --desk: var(--butter); - --page: var(--cream); + --page: var(--white-wheat); --grid-line: var(--crumb); --accent: var(--peanut-butter); } @@ -92,11 +92,11 @@ --accent: var(--syrup); } -:root[data-theme="coral"] { - --desk: var(--reef); - --page: var(--pearl); - --grid-line: var(--sand); - --accent: var(--anemone); +:root[data-theme="grapefruit"] { + --desk: var(--rind); + --page: var(--pith); + --grid-line: var(--pulp); + --accent: var(--ruby); } :root[data-theme="sea-breeze"] {