From b044a4b355dd5f816647375f4f5cbba571e6ff3c Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 22 Dec 2025 17:55:49 -0600 Subject: [PATCH] Add `Adwaita Sans` to font stack Even on Linux, Chromium "helps" by mapping `BlinkMacSystemFont` to the system Helvetica equivalent, "Liberation Sans". But Liberations doesn't have the 900 font weight that give Fizzy its characteristic chunky look. Pushing the Gnome deafult, "Adwaita Sans" head of the system fonts for Mac allows black weight. That's how it worked on Linux until we removed `system-ui` from the font stack in #2000. This is largely for Omarchy users, of which most of our developers are, so it seems fair. --- app/assets/stylesheets/_global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/_global.css b/app/assets/stylesheets/_global.css index 0fa86deb0..47f29691a 100644 --- a/app/assets/stylesheets/_global.css +++ b/app/assets/stylesheets/_global.css @@ -10,7 +10,7 @@ --block-space-double: calc(var(--block-space) * 2); /* Text */ - --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; + --font-sans: "Adwaita Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; --font-serif: ui-serif, serif; --font-mono: ui-monospace, monospace;