diff --git a/app/layout.tsx b/app/layout.tsx index 13c4f7b..cc9d960 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import { ThemeProviders, Toaster } from '@ciphera-net/ui' +import { Toaster } from '@ciphera-net/ui' import { AuthProvider } from '@/lib/auth/context' import SWRProvider from '@/components/SWRProvider' import type { Metadata, Viewport } from 'next' @@ -45,15 +45,13 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - - + + - - - {children} - - - + + {children} + + diff --git a/styles/globals.css b/styles/globals.css index 0592456..315ee27 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -10,29 +10,6 @@ --color-error: #EF4444; /* * Chart colors */ - --chart-1: #FD5E0F; - --chart-2: #3b82f6; - --chart-3: #22c55e; - --chart-4: #a855f7; - --chart-5: #f59e0b; - --chart-grid: #f5f5f5; - --chart-axis: #a3a3a3; - - /* * shadcn-compatible semantic tokens (for 21st.dev components) */ - --background: 255 255 255; - --foreground: 23 23 23; - --card: 255 255 255; - --card-foreground: 23 23 23; - --popover: 255 255 255; - --popover-foreground: 23 23 23; - --primary: 253 94 15; - --primary-foreground: 255 255 255; - --secondary: 245 245 245; - --secondary-foreground: 23 23 23; - --destructive-foreground: 255 255 255; - } - - .dark { --chart-1: #FD5E0F; --chart-2: #60a5fa; --chart-3: #4ade80; @@ -41,7 +18,7 @@ --chart-grid: #262626; --chart-axis: #737373; - /* * shadcn-compatible dark mode overrides */ + /* * shadcn-compatible semantic tokens (dark-only) */ --background: 10 10 10; --foreground: 250 250 250; --card: 23 23 23; @@ -54,9 +31,9 @@ --secondary-foreground: 250 250 250; --destructive-foreground: 255 255 255; } - + body { - @apply bg-white dark:bg-neutral-950; + @apply bg-neutral-950 text-neutral-100 antialiased; } }