diff --git a/frontend/app/assets/stylesheets/spree/frontend/_variables.scss b/frontend/app/assets/stylesheets/spree/frontend/_variables.scss index ae655a1d162..ab10a127aab 100644 --- a/frontend/app/assets/stylesheets/spree/frontend/_variables.scss +++ b/frontend/app/assets/stylesheets/spree/frontend/_variables.scss @@ -12,6 +12,7 @@ $link_text_color: #00ADEE !default; $product_background_color: #FFFFFF !default; $product_title_text_color: #404042 !default; $product_body_text_color: #404042 !default; +$product_price_text_color: #252525 !default; $product_link_text_color: #BBBBBB !default; /*--------------------------------------*/ diff --git a/frontend/app/assets/stylesheets/spree/frontend/screen.css.scss b/frontend/app/assets/stylesheets/spree/frontend/screen.css.scss index 5d8b77e1fae..97447d8e35d 100644 --- a/frontend/app/assets/stylesheets/spree/frontend/screen.css.scss +++ b/frontend/app/assets/stylesheets/spree/frontend/screen.css.scss @@ -452,7 +452,7 @@ nav#taxonomies { %price_text { font-weight: bold; - color: $link_text_color; + color: $product_price_text_color; } span.price { @@ -520,7 +520,7 @@ ul#products { } .price { - color: $link_text_color; + color: $product_price_text_color; font-size: $product_list_price_font_size; padding-top: 5px; display: block;