From 2ff5183806ed31543154d6a5a035773a60541ea9 Mon Sep 17 00:00:00 2001 From: Ally Robinson Date: Fri, 13 Feb 2026 08:58:42 -0500 Subject: [PATCH] Update font format from 'ttf' to 'truetype' (#32493) As per css docs `ttf` isn't a valid format specifier. Instead, for '.ttf' fonts you need to use `truetype`. https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@supports#font-format --- docs/theming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/theming.md b/docs/theming.md index 100baeca71..b806f2b854 100644 --- a/docs/theming.md +++ b/docs/theming.md @@ -39,7 +39,7 @@ e.g. in config.json: "faces": [ { "font-family": "Inter", - "src": [{"url": "/fonts/Inter.ttf", "format": "ttf"}] + "src": [{"url": "/fonts/Inter.ttf", "format": "truetype"}] } ], "general": "Inter, sans",