Export sass vars to css var

This commit is contained in:
Kevin Ruscoe 2021-01-02 11:36:02 +00:00
parent b3be8931d6
commit 55fb3c0628
1 changed files with 20 additions and 3 deletions

View File

@ -19,3 +19,20 @@ $highlightext: desaturate(lighten($highlight, 50%), 18%) !default; // Text
$contentbg: #fff !default; // Content BG - Tabs (active state)
$subtext: #767676 !default; // small, breadcrumbs etc
// export vars as CSS vars
:root {
--woocommerce: $woocommerce;
--wc-green: $green;
--wc-red: $red;
--wc-orange: $orange;
--wc-blue: $blue;
--wc-primary: $primary;
--wc-primarytext: $primarytext;
--wc-secondary: $secondary;
--wc-secondarytext: $secondarytext;
--wc-highlight: $highlight;
--wc-highlightext: $highlightext;
--wc-contentbg: $contentbg;
--wc-subtext: $subtext;
}