diff options
Diffstat (limited to 'paper')
-rw-r--r-- | paper/variables.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paper/variables.less b/paper/variables.less index 11553689..5c4a731c 100644 --- a/paper/variables.less +++ b/paper/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-darker: lighten(@gray-base, 13.5%); // #222 @gray-dark: #212121; @gray: #666; @gray-light: #bbb; -@gray-lighter: lighten(#000, 93.5%); // #eee +@gray-lighter: lighten(@gray-base, 93.5%); // #eee @brand-primary: #2196F3; @brand-success: #4CAF50; |