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).

12 lines (11 loc) 514 B
/* * Name: Bootstrap Colors * Version: Bootstrap v5.1 * Last Edit: 09/10/2021 * Author: @jebbarbas * Notes: Bootstrap docs in https://getbootstrap.com/docs/5.1/customize/color/#theme-colors * has all the bootstrap colors in a table, I copied then from there using the DevTools and seeing * the CSS. */ export { black, white, blue, cyan, gray, green, indigo, orange, pink, purple, red, teal, yellow } from './variableColors'; export { themeColors, unusedColors, shade500, } from './themeColors';