From 05a8afcb5022b5f059809c5bbab25518e1b96170 Mon Sep 17 00:00:00 2001 From: Anton Nesterov Date: Wed, 12 Jun 2024 14:49:04 +0200 Subject: [PATCH] rm comments in fallback --- blocks/themes/lr-basic/theme.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blocks/themes/lr-basic/theme.css b/blocks/themes/lr-basic/theme.css index 3554a503d..eaf51c4be 100644 --- a/blocks/themes/lr-basic/theme.css +++ b/blocks/themes/lr-basic/theme.css @@ -40,7 +40,7 @@ @supports not (color: oklch(0% 0 0)) { :where([lr-wgt-common]) { /* Light colors RGB fallback */ - --uc-primary-rgb-light: 54 112 253; /* Quick customization: change this value to your brand color */ + --uc-primary-rgb-light: 54 112 253; --uc-primary-light: rgb(var(--uc-primary-rgb-light)); --uc-primary-hover-light: rgb(var(--uc-primary-rgb-light) / 90%); --uc-primary-transparent-light: rgb(var(--uc-primary-rgb-light) / 10%); @@ -61,7 +61,7 @@ --uc-simple-btn-foreground-light: rgb(24 24 24); /* Dark colors RGB fallback */ - --uc-primary-rgb-dark: 87 154 255; /* Quick customization: change this value to your brand color */ + --uc-primary-rgb-dark: 87 154 255; --uc-primary-dark: rgb(var(--uc-primary-rgb-dark)); --uc-primary-hover-dark: rgb(var(--uc-primary-rgb-dark) / 90%); --uc-primary-transparent-dark: rgb(var(--uc-primary-rgb-dark) / 7%);