diff --git a/src/app/globals.css b/src/app/globals.css index ba2a9a1..59c48af 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -5,64 +5,47 @@ @layer base { :root { --background: 0 0% 100%; - --foreground: 20 14.3% 4.1%; - + --foreground: 0 0% 3.9%; --card: 0 0% 100%; - --card-foreground: 20 14.3% 4.1%; - + --card-foreground: 0 0% 3.9%; --popover: 0 0% 100%; - --popover-foreground: 20 14.3% 4.1%; - - --primary: 24 9.8% 10%; - --primary-foreground: 60 9.1% 97.8%; - - --secondary: 60 4.8% 95.9%; - --secondary-foreground: 24 9.8% 10%; - - --muted: 60 4.8% 95.9%; - --muted-foreground: 25 5.3% 44.7%; - - --accent: 60 4.8% 95.9%; - --accent-foreground: 24 9.8% 10%; - + --popover-foreground: 0 0% 3.9%; + --primary: 0 0% 9%; + --primary-foreground: 0 0% 98%; + --secondary: 0 0% 96.1%; + --secondary-foreground: 0 0% 9%; + --muted: 0 0% 96.1%; + --muted-foreground: 0 0% 45.1%; + --accent: 0 0% 96.1%; + --accent-foreground: 0 0% 9%; --destructive: 0 84.2% 60.2%; - --destructive-foreground: 60 9.1% 97.8%; - - --border: 20 5.9% 90%; - --input: 20 5.9% 90%; - --ring: 20 14.3% 4.1%; - + --destructive-foreground: 0 0% 98%; + --border: 0 0% 89.8%; + --input: 0 0% 89.8%; + --ring: 0 0% 3.9%; --radius: 0.5rem; } .dark { - --background: 20 14.3% 4.1%; - --foreground: 60 9.1% 97.8%; - - --card: 20 14.3% 4.1%; - --card-foreground: 60 9.1% 97.8%; - - --popover: 20 14.3% 4.1%; - --popover-foreground: 60 9.1% 97.8%; - - --primary: 60 9.1% 97.8%; - --primary-foreground: 24 9.8% 10%; - - --secondary: 12 6.5% 15.1%; - --secondary-foreground: 60 9.1% 97.8%; - - --muted: 12 6.5% 15.1%; - --muted-foreground: 24 5.4% 63.9%; - - --accent: 12 6.5% 15.1%; - --accent-foreground: 60 9.1% 97.8%; - + --background: 0 0% 3.9%; + --foreground: 0 0% 98%; + --card: 0 0% 3.9%; + --card-foreground: 0 0% 98%; + --popover: 0 0% 3.9%; + --popover-foreground: 0 0% 98%; + --primary: 0 0% 98%; + --primary-foreground: 0 0% 9%; + --secondary: 0 0% 14.9%; + --secondary-foreground: 0 0% 98%; + --muted: 0 0% 14.9%; + --muted-foreground: 0 0% 63.9%; + --accent: 0 0% 14.9%; + --accent-foreground: 0 0% 98%; --destructive: 0 62.8% 30.6%; - --destructive-foreground: 60 9.1% 97.8%; - - --border: 12 6.5% 15.1%; - --input: 12 6.5% 15.1%; - --ring: 24 5.7% 82.9%; + --destructive-foreground: 0 0% 98%; + --border: 0 0% 14.9%; + --input: 0 0% 14.9%; + --ring: 0 0% 83.1%; } } @@ -73,4 +56,5 @@ body { @apply bg-background text-foreground; } -} \ No newline at end of file +} + diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5235e0..60b66bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,5 @@ import type { Metadata } from "next"; -import { Inter as FontSans } from "next/font/google"; +import { Lato as FontSans } from "next/font/google"; import "./globals.css"; export const metadata: Metadata = { @@ -12,8 +12,8 @@ import { ThemeProvider } from "@/components/theme-provider"; import Layout from "@/components/layout"; const fontSans = FontSans({ - subsets: ["latin"], - variable: "--font-sans", + weight: ["400", "700"], + subsets: ["latin", "latin-ext"], }); export default function RootLayout({ @@ -25,7 +25,7 @@ export default function RootLayout({
diff --git a/src/components/binds/binds.tsx b/src/components/binds/binds.tsx deleted file mode 100644 index 41db0f4..0000000 --- a/src/components/binds/binds.tsx +++ /dev/null @@ -1,33 +0,0 @@ -"use client"; - -import { useRouter } from "next/navigation"; -import Keybinds from "@/components/binds"; -import { useActionCommand } from "@/hooks/useActionCommand"; -import { useTheme } from "next-themes"; - -const NavBinds = () => { - const router = useRouter(); - const { open: actionOpen, setOpen: setActionOpen } = useActionCommand(); - const { theme, setTheme } = useTheme(); - - return ( -