1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 01:39:50 +02:00

add color define(black, white)

This commit is contained in:
BcRikko
2018-12-02 12:18:13 +09:00
parent a1295579a2
commit 907211aa6c
4 changed files with 8 additions and 11 deletions

View File

@@ -1,5 +1,8 @@
// https://en.wikipedia.org/wiki/List_of_video_game_console_palettes#NES
$color-black: #212529;
$color-white: #fff;
$color-00: #7c7c7c;
$color-01: #0000fc;
$color-02: #0000bc;

View File

@@ -3,5 +3,5 @@
$font-family: "Press Start 2P" !default;
$font-size: 16px !default;
$base-color: #212529;
$background-color: #fff;
$base-color: $color-black;
$background-color: $color-white;