diff options
author | Steven Black <steveb@stevenblack.com> | 2014-11-04 22:40:11 -0500 |
---|---|---|
committer | Steven Black <steveb@stevenblack.com> | 2014-11-04 22:40:11 -0500 |
commit | 47f715d3172b4f22a1f2e34ee9cd71519543341f (patch) | |
tree | 95e577c6451e437ae0621e36a85a6aba6d3b1472 /spacelab | |
parent | 5f8d6a42d5919db8b8c63daf8851d1be704b4437 (diff) |
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.
Diffstat (limited to 'spacelab')
-rw-r--r-- | spacelab/variables.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spacelab/variables.less b/spacelab/variables.less index d3d80067..e73e5b37 100644 --- a/spacelab/variables.less +++ b/spacelab/variables.less @@ -9,10 +9,10 @@ @gray-base: #000; @gray-darker: #2d2d2d; // #222 -@gray-dark: lighten(#000, 20%); // #333 +@gray-dark: lighten(@gray-base, 20%); // #333 @gray: #666; // #555 -@gray-light: lighten(#000, 60%); // #999 -@gray-lighter: lighten(#000, 93.5%); // #eee +@gray-light: lighten(@gray-base, 60%); // #999 +@gray-lighter: lighten(@gray-base, 93.5%); // #eee @brand-primary: #446E9B; @brand-success: #3CB521; |