UNPKG

@jeact/colors

Version:

A module that stores colors. Including Bootstrap and MaterialUI colors. (This module is inspired in jebbarbas's `jebcolors` module, but this module only stores colors).

39 lines (38 loc) 1.31 kB
// Jebcolors theme colors import * as colors from './variableColors'; export var themeColors = { 'magic': colors.misc.purple, 'juice': colors.misc.orange, 'ocean': colors.misc.aqua, 'cake': colors.misc.pink, 'wine': colors.misc.darkPurple, 'blood': colors.misc.darkRed, 'mustard': colors.misc.darkYellow, 'militar': colors.misc.lightKhaki, 'lapislazuli': colors.misc.blue, 'matcha': colors.misc.lightGreen, 'emerald': colors.misc.green, 'coral': colors.misc.paleRed, 'love': colors.misc.mexicanPink, 'clay': colors.misc.tan, 'chocolate': colors.misc.brown, 'elegant': colors.misc.black, 'silver': colors.misc.lightGray, 'sidra': colors.misc.cherry }; export var unusedColors = { 'midnightGreen': colors.misc.midnightGreen, 'silver2': colors.misc.silver2, 'spaceGrey': colors.misc.spaceGrey, 'roseGold': colors.misc.roseGold, 'lightPurple': colors.misc.lightPurple, 'lightYellow': colors.misc.lightYellow, 'lightGreen2': colors.misc.lightGreen2, 'black2': colors.misc.black2, 'white': colors.misc.white, 'red': colors.misc.red, 'blue2': colors.misc.blue2, 'yellow': colors.misc.yellow, 'coral2': colors.misc.coral2, 'gold': colors.misc.gold, };