constant colors logic

This commit is contained in:
Diego F. Goberna
2018-12-05 02:03:42 +01:00
committed by Diego Marcos
parent 1518bf2e89
commit 09816c80cf
4 changed files with 47 additions and 31 deletions

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

@@ -0,0 +1,17 @@
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',
};