diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-11-05 11:48:06 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-11-05 11:48:06 -0500 |
commit | d1d30b1c2a22c66692369c55f19ec29726de01ac (patch) | |
tree | 95e577c6451e437ae0621e36a85a6aba6d3b1472 /readable | |
parent | 5f8d6a42d5919db8b8c63daf8851d1be704b4437 (diff) | |
parent | 47f715d3172b4f22a1f2e34ee9cd71519543341f (diff) |
Merge pull request #351 from StevenBlack/normalize-gray
Normalize the @gray[-xxxx] variable definitions in several variables.les...
Diffstat (limited to 'readable')
-rw-r--r-- | readable/variables.less | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/readable/variables.less b/readable/variables.less index 825e38c7..24b7253e 100644 --- a/readable/variables.less +++ b/readable/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, 70%); // #999 -@gray-lighter: lighten(#000, 93.5%); // #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, 70%); // #999 +@gray-lighter: lighten(@gray-base, 93.5%); // #eee @brand-primary: #4582EC; @brand-success: #3FAD46; |