easycolors
Version:
Package that stores colors of the web and many popular css frameworks
34 lines (30 loc) • 775 B
text/typescript
/*
* Tailwind Fuchsia 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 = '#fdf4ff'
export const s100 = '#fae8ff'
export const s200 = '#f5d0fe'
export const s300 = '#f0abfc'
export const s400 = '#e879f9'
export const s500 = '#d946ef'
export const s600 = '#c026d3'
export const s700 = '#a21caf'
export const s800 = '#86198f'
export const s900 = '#701a75'
/** Material Fuchsia Colors */
const fuchsia:TailwindColorObject = {
'50' : s50,
'100' : s100,
'200' : s200,
'300' : s300,
'400' : s400,
'500' : s500,
'600' : s600,
'700' : s700,
'800' : s800,
'900' : s900,
}
export default fuchsia