Skip to content

Commit

Permalink
feat: make all variables default
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvivar committed Feb 15, 2019
1 parent f3b6516 commit d77d87b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions scss/base/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,40 @@
$font-family: "Press Start 2P" !default;
$font-size: 16px !default;

$base-color: $color-black;
$background-color: $color-white;
$base-color: $color-black !default;
$background-color: $color-white !default;

$cursor-url: url(../assets/cursor.png);
$cursor-click-url: url(../assets/cursor-click.png);
$cursor-url: url(../assets/cursor.png) !default;
$cursor-click-url: url(../assets/cursor-click.png) !default;

$border-size: 4px;
$border-size: 4px !default;

$default-colors: (
normal: $background-color,
hover: #e7e7e7,
shadow: #adafbc
);
) !default;
$disabled-colors: (
normal: #d3d3d3,
shadow: #adafbc
);
) !default;
$primary-colors: (
normal: #209cee,
hover: #108de0,
shadow: #006bb3
);
) !default;
$success-colors: (
normal: #92cc41,
hover: #76c442,
shadow: #4aa52e
);
) !default;
$warning-colors: (
normal: #f7d51d,
hover: #f2c409,
shadow: #e59400
);
) !default;
$error-colors: (
normal: #e76e55,
hover: #ce372b,
shadow: #8c2022
);
) !default;

0 comments on commit d77d87b

Please sign in to comment.