From 57113bab2f3802cc823494b9aa1df280cb005e2a Mon Sep 17 00:00:00 2001 From: Jay Weisskopf Date: Sat, 8 Dec 2018 15:04:56 -0500 Subject: [PATCH] docs: Prefer system-ui font-family system-ui is a new generic font-family for matching the font used in the operating system's native user interface. E.g. Roboto on Android, San Francisco on macOS, Segoe UI on Windows, etc. https://caniuse.com/#search=system-ui --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index 57da8a5f0..7f3485289 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -8,7 +8,7 @@ body{ background-color:#111; color: #bbb; - font-family: sans-serif; + font-family: system-ui, sans-serif; } a { color: #88f;