diff options
| author | Mark Otto <[email protected]> | 2014-07-05 20:04:47 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-05 20:04:47 -0700 |
| commit | b5205bf84897e8e18dd4408e25a7d2aa95eca675 (patch) | |
| tree | 909079a2f7cfc6679ae37439e01feb8f41c458db | |
| parent | 9677c95d83f361b7c3a43e56ef89590305c84905 (diff) | |
| parent | fdacff229752e413f2705c8378e5023301db92de (diff) | |
| download | bootstrap-b5205bf84897e8e18dd4408e25a7d2aa95eca675.tar.xz bootstrap-b5205bf84897e8e18dd4408e25a7d2aa95eca675.zip | |
Merge pull request #13923 from ilikeprograms/gray-base-variable
Added @gray-base variable to make @gray-{shade} reference, also allows @...
| -rw-r--r-- | less/variables.less | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/less/variables.less b/less/variables.less index 085c49ba0..c797ae08a 100644 --- a/less/variables.less +++ b/less/variables.less @@ -7,11 +7,12 @@ // //## Gray and brand colors for use across Bootstrap. -@gray-darker: lighten(#000, 13.5%); // #222 -@gray-dark: lighten(#000, 20%); // #333 -@gray: lighten(#000, 33.5%); // #555 -@gray-light: lighten(#000, 46.7%); // #777 -@gray-lighter: lighten(#000, 93.5%); // #eee +@gray-base: #000; +@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, 46.7%); // #777 +@gray-lighter: lighten(@gray-base, 93.5%); // #eee @brand-primary: #428bca; @brand-success: #5cb85c; |
