@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).
75 lines (74 loc) • 1.61 kB
TypeScript
/**
* Colors of the dark theme of MaterialUI (only "main colors")
*/
export declare const darkThemeColors: {
primary: string;
secondary: string;
error: string;
info: string;
success: string;
warning: string;
};
/**
* Colors of the default theme of MaterialUI (only "main" colors)
*/
export declare const defaultThemeColors: {
primary: string;
secondary: string;
error: string;
info: string;
success: string;
warning: string;
};
/**
* Material colors in its '500' shade (this are used as primary colors)
*/
export declare const shade500: {
red: string;
pink: string;
purple: string;
deepPurple: string;
indigo: string;
blue: string;
lightBlue: string;
cyan: string;
teal: string;
green: string;
lightGreen: string;
lime: string;
yellow: string;
amber: string;
orange: string;
deepOrange: string;
brown: string;
blueGrey: string;
grey: string;
white: string;
black: string;
};
/**
* Material colors in its 'A400' shade (Used as a "accent" color)
*/
export declare const shadeA400: {
red: string;
pink: string;
purple: string;
deepPurple: string;
indigo: string;
blue: string;
lightBlue: string;
cyan: string;
teal: string;
green: string;
lightGreen: string;
lime: string;
yellow: string;
amber: string;
orange: string;
deepOrange: string;
brown: string;
blueGrey: string;
grey: string;
white: string;
black: string;
};