diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2c2d2ea..f62568a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Kanit } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const kanit = Kanit({ - variable: "--font-kanit", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd9ebfc..9920330 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -11,14 +11,14 @@ --background-accent: #ffffff; */ --background: #ffffff; - --card: #f9f9f9; - --foreground: #120006e6; - --primary-cta: #e63946; + --card: #f6f7f4; + --foreground: #080908; + --primary-cta: #0e3a29; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #e7eecd; --secondary-cta-text: #120006e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #35c18b; + --background-accent: #ecebe4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);