11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
let { warmGray } = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
black: '#000',
|
|
current: 'currentColor',
|
|
gray: warmGray,
|
|
inherit: 'inherit',
|
|
transparent: 'transparent',
|
|
white: '#fff'
|
|
}
|