From f5134416e38ef3d83944e01b164f29de2b805390 Mon Sep 17 00:00:00 2001 From: breadthe Date: Sat, 13 Jan 2024 09:14:28 -1000 Subject: [PATCH] Global typography -> system fonts --- source/_layouts/master.blade.php | 1 - tailwind.config.js | 34 +++++++++----------------------- 2 files changed, 9 insertions(+), 26 deletions(-) diff --git a/source/_layouts/master.blade.php b/source/_layouts/master.blade.php index ee444be..8b1dc24 100644 --- a/source/_layouts/master.blade.php +++ b/source/_layouts/master.blade.php @@ -24,7 +24,6 @@ @include('_partials.google-analytics') @endif - diff --git a/tailwind.config.js b/tailwind.config.js index e5b5ecd..98265fc 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -17,39 +17,23 @@ module.exports = { }, fontFamily: { 'sans': [ - 'Lato', 'system-ui', - 'BlinkMacSystemFont', - '-apple-system', - 'Segoe UI', - 'Roboto', - 'Oxygen', - 'Ubuntu', - 'Cantarell', - 'Fira Sans', - 'Droid Sans', - 'Helvetica Neue', 'sans-serif', ], 'serif': [ - 'Bitter', - 'Constantia', - 'Lucida Bright', - 'Lucidabright', - 'Lucida Serif', - 'Lucida', - 'DejaVu Serif', - 'Bitstream Vera Serif', - 'Liberation Serif', - 'Georgia', + 'Charter', + 'Bitstream Charter', + 'Sitka Text', + 'Cambria', 'serif', ], 'mono': [ - 'Consolas', + 'ui-monospace', + 'Cascadia Code', + 'Source Code Pro', 'Menlo', - 'Monaco', - 'Liberation Mono', - 'Courier New', + 'Consolas', + 'DejaVu Sans Mono', 'monospace', ] },