From 0b762438a79e37c3a99d3cda7740b5b1594cbd49 Mon Sep 17 00:00:00 2001 From: nzambello Date: Thu, 1 Jun 2023 15:56:17 +0200 Subject: [PATCH] fix: light theme primary plone color --- 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 f7b290d..91ab473 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: #fb8c00; - --primary-hover: #f57c00; - --primary-focus: rgba(251, 140, 0, 0.125); - --primary-inverse: #FFF; */ + --primary: #007db9; + --primary-hover: #026ea0; + --primary-focus: rgb(0, 125, 185, 0.25); + --primary-inverse: #FFF; --text-color: hsl(205, 20%, 32%); }