From ac3e1a076b899b2d4347cfe67d7f647f6fe630d0 Mon Sep 17 00:00:00 2001 From: Chris Zuber Date: Fri, 10 Apr 2026 14:54:49 -0700 Subject: [PATCH] Fix inverted theme fallback colors --- theme.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme.js b/theme.js index abd483e..e4c2784 100644 --- a/theme.js +++ b/theme.js @@ -23,9 +23,9 @@ export const baseTheme = css`@layer base.aegisjsproject.theme { export const componentBase = css`@layer components.aegisjsproject.theme { :host { - color: var(--aegis-color-light, ${light}); + color: var(--aegis-color-light, ${dark}); color: light-dark(var(--aegis-color-light, ${dark}), var(--aegis-color-dark, ${light})); - background-color: var(--aegis-bg-light, ${dark}); + background-color: var(--aegis-bg-light, ${light}); background-color: light-dark(var(--aegis-bg-light, ${light}), var(--aegis-bg-dark, ${dark})); font-family: system-ui; }