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 /darkly | |
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 'darkly')
-rw-r--r-- | darkly/variables.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/darkly/variables.less b/darkly/variables.less index 6967cd8a..dc0d0801 100644 --- a/darkly/variables.less +++ b/darkly/variables.less @@ -8,7 +8,7 @@ //## Gray and brand colors for use across Bootstrap. @gray-base: #000; -@gray-darker: lighten(#000, 13.5%); // #222 +@gray-darker: lighten(@gray-base, 13.5%); // #222 @gray-dark: #303030; // #333 @gray: #464545; @gray-light: #999; // #999 |