oliverdavies.uk/tools/tailwindcss/colours.js

11 lines
201 B
JavaScript
Raw Normal View History

2021-06-30 07:00:00 +00:00
let { warmGray } = require('tailwindcss/colors')
2021-06-30 07:00:00 +00:00
module.exports = {
2021-06-30 07:00:00 +00:00
black: '#000',
2021-06-30 07:00:00 +00:00
current: 'currentColor',
2021-06-30 07:00:00 +00:00
gray: warmGray,
2021-06-30 07:00:00 +00:00
inherit: 'inherit',
transparent: 'transparent',
2021-06-30 07:00:00 +00:00
white: '#fff'
2021-06-30 07:00:00 +00:00
}