Skip to content

Commit

Permalink
Merge pull request #13923 from ilikeprograms/gray-base-variable
Browse files Browse the repository at this point in the history
Added @gray-base variable to make @Gray-{shade} reference, also allows @...
  • Loading branch information
mdo committed Jul 6, 2014
2 parents 9677c95 + fdacff2 commit b5205bf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b5205bf

Please sign in to comment.