Merge pull request #72 from indrakaw/var-lib-fix

Updated variable colors as default.
This commit is contained in:
Scott O'Hara 2018-01-06 08:44:24 -05:00 committed by GitHub
commit 68a1c02e12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,20 +12,20 @@
// Dark Colors
$c-black: #000;
$c-off-black: #999;
$c-darker: #888;
$c-dark: #777;
$c-black: #000 !default;
$c-off-black: #999 !default;
$c-darker: #888 !default;
$c-dark: #777 !default;
// Medium Colors
$c-grey-dark: #aaa;
$c-grey: #ccc;
$c-grey-light: #eee;
$c-grey-dark: #aaa !default;
$c-grey: #ccc !default;
$c-grey-light: #eee !default;
// Light Colors
$c-white: #fff;
$c-white: #fff !default;
// Inputs
$c-focus: #5ab;
$c-focus: #5ab !default;