woocommerce/assets/css/_variables.scss

39 lines
1.4 KiB
SCSS
Raw Normal View History

/**
* WooCommerce CSS Variables
*/
$woocommerce: #a46497 !default;
$green: #7ad03a !default;
$red: #a00 !default;
$orange: #ffba00 !default;
$blue: #2ea2cc !default;
2021-01-02 11:36:02 +00:00
$primary: #a46497 !default; // Primary color for buttons (alt)
$primarytext: desaturate(lighten($primary, 50%), 18%) !default; // Text on primary color bg
2014-09-22 17:35:48 +00:00
$secondary: desaturate(lighten($primary, 40%), 21%) !default; // Secondary buttons
$secondarytext: desaturate(darken($secondary, 60%), 21%) !default; // Text on secondary color bg
2014-09-22 17:35:48 +00:00
$highlight: adjust-hue($primary, 150deg) !default; // Prices, In stock labels, sales flash
$highlightext: desaturate(lighten($highlight, 50%), 18%) !default; // Text on highlight color bg
2014-09-22 17:35:48 +00:00
2021-01-02 11:36:02 +00:00
$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;
2021-01-15 14:25:36 +00:00
--wc-primary-text: $primarytext;
2021-01-02 11:36:02 +00:00
--wc-secondary: $secondary;
2021-01-15 14:25:36 +00:00
--wc-secondary-text: $secondarytext;
2021-01-02 11:36:02 +00:00
--wc-highlight: $highlight;
2021-01-15 14:25:36 +00:00
--wc-highligh-text: $highlightext;
--wc-content-bg: $contentbg;
2021-01-02 11:36:02 +00:00
--wc-subtext: $subtext;
}