From 86070981065b76a3d26b7fab135cdc1510f71385 Mon Sep 17 00:00:00 2001 From: theoleuthardt Date: Fri, 7 Feb 2025 13:47:11 +0100 Subject: [PATCH] feat: new font noto for tailwind --- src/app/globals.css | 4 +++- tailwind.config.ts | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/globals.css b/src/app/globals.css index 6b717ad..54a7e08 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap'); + @tailwind base; @tailwind components; @tailwind utilities; @@ -18,4 +20,4 @@ body { color: var(--foreground); background: var(--background); font-family: Arial, Helvetica, sans-serif; -} +} \ No newline at end of file diff --git a/tailwind.config.ts b/tailwind.config.ts index 109807b..e8a5d26 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -12,6 +12,9 @@ export default { background: "var(--background)", foreground: "var(--foreground)", }, + fontFamily: { + noto: ["Noto Serif", "serif"], + } }, }, plugins: [],