From c5b8a300fec664d3a6bc14fc4b711d7030ba7c33 Mon Sep 17 00:00:00 2001 From: Paul Kuruvilla Date: Tue, 2 Dec 2025 17:45:37 +0530 Subject: [PATCH] style: update font and add color-scheme to root for better theming Change default cursive font from 'Shadows Into Light Two' to 'Indie Flower' for improved readability and visual style. Add color-scheme property with 'light dark' to :root to ensure compatibility with dark mode extensions and proper color rendering. --- app/styles/app.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/styles/app.css b/app/styles/app.css index b961de294f..aed78e22b2 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -15,8 +15,10 @@ @import url('pages/course-stage-solution-page.css'); :root { - /* --font-cursive: 'Shadows Into Light Two', cursive; */ --font-cursive: 'Indie Flower', cursive; + + /* Ensure that dark mode extensions don't mess with our colors */ + color-scheme: light dark; } body {