Commit b5205bf8 authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #13923 from ilikeprograms/gray-base-variable

Added @gray-base variable to make @gray-{shade} reference, also allows @...
parents 9677c95d fdacff22
Showing with 6 additions and 5 deletions
+6 -5
...@@ -7,11 +7,12 @@ ...@@ -7,11 +7,12 @@
// //
//## Gray and brand colors for use across Bootstrap. //## Gray and brand colors for use across Bootstrap.
@gray-darker: lighten(#000, 13.5%); // #222 @gray-base: #000;
@gray-dark: lighten(#000, 20%); // #333 @gray-darker: lighten(@gray-base, 13.5%); // #222
@gray: lighten(#000, 33.5%); // #555 @gray-dark: lighten(@gray-base, 20%); // #333
@gray-light: lighten(#000, 46.7%); // #777 @gray: lighten(@gray-base, 33.5%); // #555
@gray-lighter: lighten(#000, 93.5%); // #eee @gray-light: lighten(@gray-base, 46.7%); // #777
@gray-lighter: lighten(@gray-base, 93.5%); // #eee
@brand-primary: #428bca; @brand-primary: #428bca;
@brand-success: #5cb85c; @brand-success: #5cb85c;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment