From 0fe3c8be464d8e9d7c1c176ba0e3a83a129c6d97 Mon Sep 17 00:00:00 2001 From: nzambello Date: Thu, 1 Jun 2023 15:53:51 +0200 Subject: [PATCH] fix: light theme constrast --- src/styles/global.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index dd500d2..f7b290d 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -2,10 +2,10 @@ /* Can be forced with data-theme="light" */ [data-theme="light"], :root:not([data-theme="dark"]) { - --primary: #ffb300; - --primary-hover: #ffa000; - --primary-focus: rgba(255, 179, 0, 0.125); - --primary-inverse: rgba(0, 0, 0, 0.75); + /* --primary: #fb8c00; + --primary-hover: #f57c00; + --primary-focus: rgba(251, 140, 0, 0.125); + --primary-inverse: #FFF; */ --text-color: hsl(205, 20%, 32%); }