From 1eabf61455a1f8146f7a67de8646de4be2a4338c Mon Sep 17 00:00:00 2001 From: QihanNX Date: Tue, 11 Aug 2026 04:27:32 +0000 Subject: [PATCH] feat: switch to Noto Serif SC for a refreshed look --- astro.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/astro.config.ts b/astro.config.ts index eb07cc2..12a6481 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -60,12 +60,12 @@ export default defineConfig({ }, fonts: [ { - name: "Nunito", - cssVariable: "--font-nunito", + name: "Noto Serif SC", + cssVariable: "--font-noto-serif-sc", provider: fontProviders.google(), - fallbacks: ["sans-serif"], - weights: [300, 400, 500, 600, 700, 800], - styles: ["normal", "italic"], + fallbacks: ["serif"], + weights: [400, 600, 700, 900], + styles: ["normal"], formats: ["woff", "ttf"], }, ],