game texts glow, tweaked ui buttons

This commit is contained in:
Diego F. Goberna
2018-12-05 21:01:39 +01:00
committed by Diego Marcos
parent e01baa7f14
commit 5ae970b04a
4 changed files with 932 additions and 2 deletions

21
src/constants/colors.js Normal file
View File

@@ -0,0 +1,21 @@
module.exports = {
OFF: '#111',
RED: '#f00',
BLUE: '#00f',
BG_OFF: '#222',
BG_BLUE: '#007AB8',
BG_BRIGHTBLUE: '#5FCCFF',
BG_RED: '#B80000',
BG_BRIGHTRED: '#FF4343',
NEON_OFF: '#000',
NEON_BLUE: '#00f',
NEON_BRIGHTBLUE: '#aaf',
NEON_RED: '#f00',
NEON_BRIGHTRED: '#faa',
TEXT_OFF: '#000',
TEXT_NORMAL: '#444',
TEXT_BOLD: '#888',
};