@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).
44 lines (43 loc) • 831 B
TypeScript
/**
* Colors of the default Bootstrap theme
*/
export declare const themeColors: {
primary: string;
secondary: string;
success: string;
info: string;
warning: string;
danger: string;
light: string;
dark: string;
};
/**
* Unused colors of Bootstrap
*/
export declare const unusedColors: {
purple: string;
indigo: string;
orange: string;
pink: string;
teal: string;
black: string;
white: string;
};
/**
* Bootstrap colors in its '500' shade
*/
export declare const shade500: {
blue: string;
indigo: string;
purple: string;
pink: string;
red: string;
orange: string;
yellow: string;
green: string;
teal: string;
cyan: string;
gray: string;
white: string;
black: string;
};