diff --git a/plugins/CorePluginsAdmin/stylesheets/marketplace.less b/plugins/CorePluginsAdmin/stylesheets/marketplace.less index a3e3dcd56c6..34be71960c6 100644 --- a/plugins/CorePluginsAdmin/stylesheets/marketplace.less +++ b/plugins/CorePluginsAdmin/stylesheets/marketplace.less @@ -39,7 +39,7 @@ } a { - color: #255792; + color: @theme-color-link; text-decoration: none; } diff --git a/plugins/Morpheus/stylesheets/general/_forms.less b/plugins/Morpheus/stylesheets/general/_forms.less index d3bc64724c0..80b3eb88927 100644 --- a/plugins/Morpheus/stylesheets/general/_forms.less +++ b/plugins/Morpheus/stylesheets/general/_forms.less @@ -14,11 +14,11 @@ button[type="button"], .submit { .border-radius(3px) !important; background: none !important; - background-color: #d3291f !important; + background-color: @theme-color-brand !important; .box-shadow(~"0 1px 1px rgba(13,13,13,.3), inset 0 -1px 0 rgba(13,13,13,.1)"); #gradient > .vertical(rgba(255,255,255,.15), rgba(255,255,255,0)) !important; .font-default(12px, 16px) !important; - color: #fff !important;; + color: @theme-color-brand-contrast !important;; font-weight: normal; padding: 5px 15px !important; text-align: center; diff --git a/plugins/Zeitgeist/stylesheets/less/_variables.less b/plugins/Zeitgeist/stylesheets/less/_variables.less index ae907b9fcb2..41027f79107 100644 --- a/plugins/Zeitgeist/stylesheets/less/_variables.less +++ b/plugins/Zeitgeist/stylesheets/less/_variables.less @@ -2,6 +2,7 @@ // Theme colors // Variable pattern: @theme-color-[-] @theme-color-brand: @color-red-piwik; +@theme-color-brand-contrast: @color-white; @theme-color-text: @color-black-piwik; @theme-color-text-light: #444; @theme-color-text-lighter: @color-silver-l40;