UNPKG

easycolors

Version:

Package that stores colors of the web and many popular css frameworks

34 lines (30 loc) 759 B
/* * Tailwind Red Colors * Created by: tailwind.creator.js (written by jebbarbas) * Last Update: Mon, 18 Jul 2022 00:27:00 GMT */ import { TailwindColorObject } from './types' export const s50 = '#fef2f2' export const s100 = '#fee2e2' export const s200 = '#fecaca' export const s300 = '#fca5a5' export const s400 = '#f87171' export const s500 = '#ef4444' export const s600 = '#dc2626' export const s700 = '#b91c1c' export const s800 = '#991b1b' export const s900 = '#7f1d1d' /** Material Red Colors */ const red:TailwindColorObject = { '50' : s50, '100' : s100, '200' : s200, '300' : s300, '400' : s400, '500' : s500, '600' : s600, '700' : s700, '800' : s800, '900' : s900, } export default red