diff --git a/src/components/AppShell.tsx b/src/components/AppShell.tsx index b53b009..e0053d8 100644 --- a/src/components/AppShell.tsx +++ b/src/components/AppShell.tsx @@ -95,7 +95,7 @@ export function AppShell() { return (
+ {!collapsed &&
{zpl
? zpl.split('\n').map((line, i) => (
diff --git a/src/index.css b/src/index.css
index aa31c61..e3f8e90 100644
--- a/src/index.css
+++ b/src/index.css
@@ -20,13 +20,13 @@
user's explicit choice afterwards, so an OS media-query fallback would
only fight with the cached preference. */
:root[data-theme="light"] {
- --color-bg: #f4f4f8;
- --color-surface: #ffffff;
- --color-surface-2: #ececf3;
- --color-border: #dcdce8;
- --color-border-2: #c8c8d8;
- --color-text: #1a1a2e;
- --color-muted: #8080a8;
+ --color-bg: #e4e4e7;
+ --color-surface: #fafafa;
+ --color-surface-2: #f4f4f5;
+ --color-border: #d4d4d8;
+ --color-border-2: #a1a1aa;
+ --color-text: #18181b;
+ --color-muted: #52525b;
--color-accent: #d97706;
--color-accent-dim:#fef3c7;
}
diff --git a/src/lib/useColorScheme.ts b/src/lib/useColorScheme.ts
index 4389211..c3d53b4 100644
--- a/src/lib/useColorScheme.ts
+++ b/src/lib/useColorScheme.ts
@@ -27,16 +27,16 @@ export const DARK_COLORS: CanvasColors = {
};
export const LIGHT_COLORS: CanvasColors = {
- canvasBg: '#ededf3',
- canvasDot: '#bebecf',
- gridLine: '#b0b0c4',
- gridSub: '#d0d0de',
- rulerBg: '#f0f0f6',
- rulerCorner: '#e6e6f0',
- rulerMajorTick: '#505070',
- rulerMinorTick: '#9090b0',
- rulerLabel: '#303060',
- rulerSeparator: '#d0d0e0',
+ canvasBg: '#e4e4e7',
+ canvasDot: '#dcdce0',
+ gridLine: '#a1a1aa',
+ gridSub: '#d4d4d8',
+ rulerBg: '#f4f4f5',
+ rulerCorner: '#e4e4e7',
+ rulerMajorTick: '#3f3f46',
+ rulerMinorTick: '#71717a',
+ rulerLabel: '#27272a',
+ rulerSeparator: '#d4d4d8',
};
export function useColorScheme(): CanvasColors {