UNPKG

easycolors

Version:

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

34 lines (30 loc) 763 B
/* * Tailwind Blue 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 = '#eff6ff' export const s100 = '#dbeafe' export const s200 = '#bfdbfe' export const s300 = '#93c5fd' export const s400 = '#60a5fa' export const s500 = '#3b82f6' export const s600 = '#2563eb' export const s700 = '#1d4ed8' export const s800 = '#1e40af' export const s900 = '#1e3a8a' /** Material Blue Colors */ const blue:TailwindColorObject = { '50' : s50, '100' : s100, '200' : s200, '300' : s300, '400' : s400, '500' : s500, '600' : s600, '700' : s700, '800' : s800, '900' : s900, } export default blue