diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index 63e8c6a..6794a97 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -161,7 +161,7 @@ function App() { : 'thrift'; return ( -
+
-
+
@@ -95,7 +95,7 @@ export function ThriftEditor({ readOnly={!editable} extensions={[json()]} className={cn( - 'h-full overflow-auto [&_.cm-gutters]:border-none [&_.cm-gutters]:bg-white [&_.cm-focused]:outline-none dark:[&_.cm-gutters]:bg-[#0d1117]', + 'h-full overflow-auto [&_.cm-gutters]:border-none [&_.cm-gutters]:bg-white [&_.cm-focused]:outline-none dark:[&_.cm-gutters]:bg-[#282b33] dark:[&_.cm-editor]:bg-[#282b33]', !editable && 'cursor-text select-text' )} basicSetup={{ diff --git a/apps/web/src/components/layout/Header.tsx b/apps/web/src/components/layout/Header.tsx index 3a4de10..473ad28 100644 --- a/apps/web/src/components/layout/Header.tsx +++ b/apps/web/src/components/layout/Header.tsx @@ -26,8 +26,8 @@ export function Header({ parserMetrics }: HeaderProps) { return ( -
-
+
+
diff --git a/apps/web/src/index.css b/apps/web/src/index.css index 51c373f..55b9b27 100644 --- a/apps/web/src/index.css +++ b/apps/web/src/index.css @@ -37,33 +37,33 @@ } .dark { - --background: 220 20% 10%; + --background: 222 17% 18%; --foreground: 220 15% 95%; - --muted: 220 15% 15%; + --muted: 223 17% 15%; --muted-foreground: 220 15% 65%; - --popover: 220 20% 10%; + --popover: 222 17% 18%; --popover-foreground: 220 15% 95%; - --card: 220 20% 10%; + --card: 222 17% 18%; --card-foreground: 220 15% 95%; - --border: 220 15% 20%; - --input: 220 15% 20%; + --border: 223 17% 22%; + --input: 223 17% 22%; --primary: 220 15% 95%; - --primary-foreground: 220 20% 10%; + --primary-foreground: 222 17% 18%; - --secondary: 220 15% 15%; + --secondary: 223 17% 15%; --secondary-foreground: 220 15% 95%; - --accent: 220 15% 15%; + --accent: 223 17% 15%; --accent-foreground: 220 15% 95%; --destructive: 0 70% 35%; --destructive-foreground: 0 85% 95%; - --ring: 220 15% 20%; + --ring: 223 17% 22%; } }