oliverdavies.uk/website/assets/tailwindcss/colours.cjs

14 lines
240 B
JavaScript
Raw Normal View History

let colours = require('tailwindcss/colors')
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
module.exports = {
2021-06-30 07:00:00 +00:00
black: '#000',
2021-09-08 22:13:12 +00:00
blue: {
primary: '#24608A',
},
2021-06-30 07:00:00 +00:00
current: 'currentColor',
gray: colours.stone,
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
}