pebblebed
Version:
Simplified interactions with Google Datastore for NodeJS
39 lines (36 loc) • 981 B
JavaScript
export const Colors = {
BlueShadow: "#2E3640",
MidBlueShadow: "#586473",
LightBlueShadow: "#7C8B99",
LightestBlueShadow: "#acc2d1",
Warn: "#FF7519",
MintGreen: "#7dff74",
DarkBlue: "#267eae",
MidBlue: "#6CB5E3",
LightBlue: "#59C3FB",
LightestBlue: "#BFF8FF",
WhiteBlue: "#EEF8FF",
PrimaryRed: "#ec5d59",
BrightRed: "#ff243a",
PeachRed: "#e47776",
RatingGold: "#fff776",
LightGold: "#fff690",
LightestGold: "#fffdb9",
LightGrey: "#e2e6eb",
// FLAT UI COLORS
Concrete: "#95a5a6",
Amethyst: "#9b59b6",
PeterRiver: "#3498db",
Emerald: "#2ecc71",
Turquoise: "#1abc9c",
Sunflower: "#f1c40f",
Carrot: "#e67e22",
Alizarin: "#e74c3c",
};
export const RgbColors = {
BlueShadow: ["46, 54, 64", 46, 54, 64],
MintGreen: ["125, 255, 116", 125, 255, 116],
LightBlue: ["89, 195, 251", 89, 195, 251],
MidBlueShadow: ["88, 100, 115", 88, 100, 115],
Turquoise: ["26, 188, 156", 26, 188, 156],
};