diff --git a/.env.example b/.env.example index 5b52d82b..0b76aa53 100644 --- a/.env.example +++ b/.env.example @@ -86,6 +86,4 @@ LOG_SLACK_WEBHOOK_URL= FLARE_KEY= IGNITION_OPEN_AI_KEY= -FONT_LINK= - BRIDGY_MASTODON_TOKEN= diff --git a/config/app.php b/config/app.php index 2c80a4e3..3a419461 100644 --- a/config/app.php +++ b/config/app.php @@ -144,17 +144,6 @@ return [ // 'store' => 'redis', ], - /* - |-------------------------------------------------------------------------- - | Font Link - |-------------------------------------------------------------------------- - | - | Which URL should the app load custom fonts from - | - */ - - 'font_link' => env('FONT_LINK'), - /* |-------------------------------------------------------------------------- | Autoloaded Service Providers diff --git a/public/assets/css/variables.css b/public/assets/css/variables.css index b571ff20..cd0b7448 100644 --- a/public/assets/css/variables.css +++ b/public/assets/css/variables.css @@ -1,8 +1,8 @@ :root { /* Font Family */ - --font-family-headings: "Archer SSm A", "Archer SSm B", serif; - --font-family-body: "Verlag A", "Verlag B", sans-serif; - --font-family-monospace: "Operator Mono SSm A", "Operator Mono SSm B", monospace; + --font-family-headings: Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif; + --font-family-body: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif; + --font-family-monospace: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;; /* Font Size */ --font-size-sm: 0.75rem; /* 12px */ diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php index 88b5e7f1..5c4f09d9 100644 --- a/resources/views/master.blade.php +++ b/resources/views/master.blade.php @@ -4,9 +4,6 @@