@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).
11 lines (10 loc) • 636 B
JavaScript
/*
* Name: Material Colors
* Version: MUI Material 5.0.3
* Last Edit: 09/10/2021
* Author: @jebbarbas
* Notes: Material UI Git Repo ubicated in https://github.com/mui-org/material-ui/tree/f002835bcf8cdcc9c95e1144487fcd09ba892110/packages/mui-material/src/colors.
* Has all the colors in diferent files, so I copied and pasted them.
*/
export { amber, blue, blueGrey, brown, common, cyan, deepOrange, deepPurple, green, grey, indigo, lightBlue, lightGreen, lime, orange, pink, purple, red, teal, yellow } from './variableColors';
export { darkThemeColors, defaultThemeColors, shade500, shadeA400 } from './themeColors';