easycolors
Version:
Package that stores colors of the web and many popular css frameworks
34 lines (30 loc) • 771 B
text/typescript
/*
* Tailwind Yellow 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 = '#fefce8'
export const s100 = '#fef9c3'
export const s200 = '#fef08a'
export const s300 = '#fde047'
export const s400 = '#facc15'
export const s500 = '#eab308'
export const s600 = '#ca8a04'
export const s700 = '#a16207'
export const s800 = '#854d0e'
export const s900 = '#713f12'
/** Material Yellow Colors */
const yellow:TailwindColorObject = {
'50' : s50,
'100' : s100,
'200' : s200,
'300' : s300,
'400' : s400,
'500' : s500,
'600' : s600,
'700' : s700,
'800' : s800,
'900' : s900,
}
export default yellow