From 47f715d3172b4f22a1f2e34ee9cd71519543341f Mon Sep 17 00:00:00 2001 From: Steven Black Date: Tue, 4 Nov 2014 22:40:11 -0500 Subject: Normalize the @gray[-xxxx] variable definitions in several variables.less files to bring most themes in-line with standard Bootstrap's variable.less file. Take note: no values are changed; just assigning #000 to @gray-base in the @gray[-xxxx] section. --- cosmo/variables.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cosmo') diff --git a/cosmo/variables.less b/cosmo/variables.less index 0411968c..4c2ac524 100644 --- a/cosmo/variables.less +++ b/cosmo/variables.less @@ -8,11 +8,11 @@ //## Gray and brand colors for use across Bootstrap. @gray-base: #000; -@gray-darker: lighten(#000, 13.5%); // #222 -@gray-dark: lighten(#000, 20%); // #333 -@gray: lighten(#000, 33.5%); // #555 -@gray-light: lighten(#000, 60%); // #999 -@gray-lighter: lighten(#000, 90%); // #eee +@gray-darker: lighten(@gray-base, 13.5%); // #222 +@gray-dark: lighten(@gray-base, 20%); // #333 +@gray: lighten(@gray-base, 33.5%); // #555 +@gray-light: lighten(@gray-base, 60%); // #999 +@gray-lighter: lighten(@gray-base, 90%); // #eee @brand-primary: #2780E3; @brand-success: #3FB618; -- cgit v1.2.3