From 1aee45bc7080a4eabd50c8b4a2e10002ae5a867e Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 31 Oct 2025 20:02:01 +0200 Subject: [PATCH] exclude wordle emojis from Inter --- bskyweb/templates/base.html | 2 ++ web/index.html | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 0bde22e77c..4adde7cc09 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -29,6 +29,7 @@ font-weight: 300 1000; font-style: normal; font-display: swap; + unicode-range: U+0000-2B1A, U+2B1D-10FFFF; /* everything except the wordle squares */ } @font-face { font-family: 'InterVariableItalic'; @@ -36,6 +37,7 @@ font-weight: 300 1000; font-style: italic; font-display: swap; + unicode-range: U+0000-2B1A, U+2B1D-10FFFF; /* everything except the wordle squares */ } html { background-color: white; diff --git a/web/index.html b/web/index.html index 2077530fe0..8d022b2a6a 100644 --- a/web/index.html +++ b/web/index.html @@ -34,6 +34,7 @@ font-weight: 300 1000; font-style: normal; font-display: swap; + unicode-range: U+0000-2B1A, U+2B1D-10FFFF; /* everything except the wordle squares */ } @font-face { font-family: 'InterVariableItalic'; @@ -41,6 +42,7 @@ font-weight: 300 1000; font-style: italic; font-display: swap; + unicode-range: U+0000-2B1A, U+2B1D-10FFFF; /* everything except the wordle squares */ } html { background-color: white;