jquery-ui
5 years ago
photoswipe
5 years ago
_animation.scss
3 years ago
_fonts.scss
3 years ago
_mixins.scss
3 years ago
_variables.scss
2 years ago
activation-rtl.css
2 years ago
activation.css
2 years ago
activation.scss
2 years ago
admin-rtl.css
2 years ago
admin.css
2 years ago
admin.scss
2 years ago
auth-rtl.css
2 years ago
auth.css
2 years ago
auth.scss
2 years ago
dashboard-rtl.css
2 years ago
dashboard-setup-rtl.css
4 years ago
dashboard-setup.css
4 years ago
dashboard-setup.scss
3 years ago
dashboard.css
2 years ago
dashboard.scss
3 years ago
helper-rtl.css
2 years ago
helper.css
2 years ago
helper.scss
2 years ago
marketplace-suggestions-rtl.css
2 years ago
marketplace-suggestions.css
2 years ago
marketplace-suggestions.scss
3 years ago
menu-rtl.css
2 years ago
menu.css
2 years ago
menu.scss
2 years ago
network-order-widget-rtl.css
4 years ago
network-order-widget.css
4 years ago
network-order-widget.scss
3 years ago
prettyPhoto-rtl.css
2 years ago
prettyPhoto.css
2 years ago
prettyPhoto.scss
3 years ago
privacy-rtl.css
6 years ago
privacy.css
6 years ago
privacy.scss
3 years ago
reports-print-rtl.css
3 years ago
reports-print.css
3 years ago
reports-print.scss
3 years ago
select2.css
3 years ago
select2.scss
3 years ago
twenty-nineteen-rtl.css
3 years ago
twenty-nineteen.css
3 years ago
twenty-nineteen.scss
3 years ago
twenty-seventeen-rtl.css
3 years ago
twenty-seventeen.css
3 years ago
twenty-seventeen.scss
3 years ago
twenty-twenty-one-admin-rtl.css
2 years ago
twenty-twenty-one-admin.css
2 years ago
twenty-twenty-one-admin.scss
2 years ago
twenty-twenty-one-rtl.css
2 years ago
twenty-twenty-one.css
2 years ago
twenty-twenty-one.scss
3 years ago
twenty-twenty-rtl.css
2 years ago
twenty-twenty-three-rtl.css
2 years ago
twenty-twenty-three.css
2 years ago
twenty-twenty-three.scss
2 years ago
twenty-twenty-two-rtl.css
2 years ago
twenty-twenty-two.css
2 years ago
twenty-twenty-two.scss
2 years ago
twenty-twenty.css
2 years ago
twenty-twenty.scss
2 years ago
wc-setup-rtl.css
2 years ago
wc-setup.css
2 years ago
wc-setup.scss
2 years ago
woocommerce-blocktheme-rtl.css
2 years ago
woocommerce-blocktheme.css
2 years ago
woocommerce-blocktheme.scss
2 years ago
woocommerce-layout-rtl.css
2 years ago
woocommerce-layout.css
2 years ago
woocommerce-layout.scss
2 years ago
woocommerce-rtl.css
2 years ago
woocommerce-smallscreen-rtl.css
2 years ago
woocommerce-smallscreen.css
2 years ago
woocommerce-smallscreen.scss
3 years ago
woocommerce.css
2 years ago
woocommerce.scss
2 years ago
_variables.scss
39 lines
| 1 | /** |
| 2 | * WooCommerce CSS Variables |
| 3 | */ |
| 4 | |
| 5 | $woocommerce: #7F54B3 !default; |
| 6 | $green: #7ad03a !default; |
| 7 | $red: #a00 !default; |
| 8 | $orange: #ffba00 !default; |
| 9 | $blue: #2ea2cc !default; |
| 10 | |
| 11 | $primary: #7F54B3 !default; // Primary color for buttons (alt) |
| 12 | $primarytext: desaturate(lighten($primary, 50%), 18%) !default; // Text on primary color bg |
| 13 | |
| 14 | $secondary: desaturate(lighten($primary, 40%), 21%) !default; // Secondary buttons |
| 15 | $secondarytext: desaturate(darken($secondary, 60%), 21%) !default; // Text on secondary color bg |
| 16 | |
| 17 | $highlight: adjust-hue($primary, 150deg) !default; // Prices, In stock labels, sales flash |
| 18 | $highlightext: desaturate(lighten($highlight, 50%), 18%) !default; // Text on highlight color bg |
| 19 | |
| 20 | $contentbg: #fff !default; // Content BG - Tabs (active state) |
| 21 | $subtext: #767676 !default; // small, breadcrumbs etc |
| 22 | |
| 23 | // export vars as CSS vars |
| 24 | :root { |
| 25 | --woocommerce: #{$woocommerce}; |
| 26 | --wc-green: #{$green}; |
| 27 | --wc-red: #{$red}; |
| 28 | --wc-orange: #{$orange}; |
| 29 | --wc-blue: #{$blue}; |
| 30 | --wc-primary: #{$primary}; |
| 31 | --wc-primary-text: #{$primarytext}; |
| 32 | --wc-secondary: #{$secondary}; |
| 33 | --wc-secondary-text: #{$secondarytext}; |
| 34 | --wc-highlight: #{$highlight}; |
| 35 | --wc-highligh-text: #{$highlightext}; |
| 36 | --wc-content-bg: #{$contentbg}; |
| 37 | --wc-subtext: #{$subtext}; |
| 38 | } |
| 39 |