Switch to Outfit/Newsreader/IBM Plex Mono, add Stackless global polish

- Replace Geist with Outfit (sans), Newsreader (serif), IBM Plex Mono
  loaded via next/font for optimal performance and no layout shift
- Wire --font-sans/serif/mono CSS variables to new fonts
- body/button/input now render in Outfit by default
- Add Stackless global polish: 4px thin scrollbars (#d0ccc4 thumb),
  black ::selection, input placeholder color #b5b0a6

Made-with: Cursor
This commit is contained in:
2026-03-02 16:21:20 -08:00
parent 9858a7fa15
commit 59c8ec2e02
2 changed files with 44 additions and 9 deletions

View File

@@ -1,17 +1,26 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Outfit, Newsreader, IBM_Plex_Mono } from "next/font/google";
import "./globals.css";
import { Toaster } from "@/components/ui/sonner";
import { Providers } from "@/app/components/Providers";
const geistSans = Geist({
variable: "--font-geist-sans",
const outfit = Outfit({
variable: "--font-outfit",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const newsreader = Newsreader({
variable: "--font-newsreader",
subsets: ["latin"],
weight: ["400", "500"],
style: ["normal", "italic"],
});
const ibmPlexMono = IBM_Plex_Mono({
variable: "--font-ibm-plex-mono",
subsets: ["latin"],
weight: ["400", "500"],
});
export const metadata: Metadata = {
@@ -27,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`${outfit.variable} ${newsreader.variable} ${ibmPlexMono.variable} antialiased`}
>
<Providers>
{children}