From 1d2251c2146deac20d5b84823585dbd552a06339 Mon Sep 17 00:00:00 2001 From: Troy Date: Sun, 19 Jan 2025 23:00:54 +0000 Subject: [PATCH] improve bg fg contrast --- astro.config.ts | 1 - src/styles/global.css | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/astro.config.ts b/astro.config.ts index 0f467b7..1eb7f9f 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -33,5 +33,4 @@ export default defineConfig({ experimental: { responsiveImages: true, }, - prefetch: true, }); diff --git a/src/styles/global.css b/src/styles/global.css index 818739c..d9e9532 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -10,14 +10,14 @@ :root { --primary: 0deg 0% 99%; --secondary: 0deg 0% 13%; - --tertiary: 0deg 0% 51%; + --tertiary: 0deg 0% 45%; --accent: 0deg 0% 39%; } @media (prefers-color-scheme: dark) { :root { --primary: 0deg 0% 0%; --secondary: 0deg 0% 93%; - --tertiary: 0deg 0% 45%; + --tertiary: 0deg 0% 50%; --accent: 0deg 0% 71%; } }