1
0
Fork 0
BangleApps/testing/colors.js

21 lines
437 B
JavaScript

const colors = {
"Black": 0x0000,
"Navy": 0x000F,
"DarkGreen": 0x03E0,
"DarkCyan": 0x03EF,
"Maroon": 0x7800,
"Purple": 0x780F,
"Olive": 0x7BE0,
"LightGray": 0xC618,
"DarkGrey": 0x7BEF,
"Blue": 0x001F,
"Green": 0x07E0,
"Cyan": 0x07FF,
"Red": 0xF800,
"Magenta": 0xF81F,
"Yellow": 0xFFE0,
"White": 0xFFFF,
"Orange": 0xFD20,
"GreenYellow": 0xAFE5,
"Pink": 0xF81F
};