@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).
49 lines (48 loc) • 1.33 kB
JavaScript
// Bootstrap Theme Colors
import * as colors from "./variableColors";
// Bootstrap main colors (used in theme)
/**
* Colors of the default Bootstrap theme
*/
export var themeColors = {
"primary": colors.blue[500],
"secondary": colors.gray[600],
"success": colors.green[500],
"info": colors.cyan[500],
"warning": colors.yellow[500],
"danger": colors.red[500],
"light": colors.gray[100],
"dark": colors.gray[900]
};
// Another (unused) Bootstrap colors
/**
* Unused colors of Bootstrap
*/
export var unusedColors = {
"purple": colors.purple[500],
"indigo": colors.indigo[500],
"orange": colors.orange[500],
"pink": colors.pink[500],
"teal": colors.teal[500],
"black": colors.black,
"white": colors.white
};
// Bootstrap colors in its '500' shade
/**
* Bootstrap colors in its '500' shade
*/
export var shade500 = {
"blue": colors.blue[500],
"indigo": colors.indigo[500],
"purple": colors.purple[500],
"pink": colors.pink[500],
"red": colors.red[500],
"orange": colors.orange[500],
"yellow": colors.yellow[500],
"green": colors.green[500],
"teal": colors.teal[500],
"cyan": colors.cyan[500],
"gray": colors.gray[500],
"white": colors.white,
"black": colors.black
};