1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-29 16:59:58 +02:00

refactor: color variables (#132)

* refactor(buttons.scss): add color variables

* refactor(inputs.scss): replace to color variables

* refactor(checkboxes.scss): replace to color variables

* refactor(containers.scss): replace to color variables

* refactor(radios.scss): replace to color variables
This commit is contained in:
ダーシノ
2018-12-09 22:19:57 +09:00
committed by Abdullah Samman
parent 629a2042d9
commit b29f88ae3f
6 changed files with 92 additions and 52 deletions

View File

@@ -7,3 +7,33 @@ $background-color: $color-white;
$cursor-url: url(../assets/cursor.png);
$cursor-click-url: url(../assets/cursor-click.png);
$default-colors: (
normal: $background-color,
hover: #e7e7e7,
shadow: #adafbc
);
$disabled-colors: (
normal: #d3d3d3,
shadow: #adafbc
);
$primary-colors: (
normal: #209cee,
hover: #108de0,
shadow: #006bb3
);
$success-colors: (
normal: #92cc41,
hover: #76c442,
shadow: #4aa52e
);
$warning-colors: (
normal: #f7d51d,
hover: #f2c409,
shadow: #e59400
);
$error-colors: (
normal: #e76e55,
hover: #ce372b,
shadow: #8c2022
);