2022-10-22 11:21:01 +01:00
|
|
|
let colours = require('tailwindcss/colors')
|
2021-06-30 08:00:00 +01:00
|
|
|
|
2021-06-30 08:00:00 +01:00
|
|
|
module.exports = {
|
2021-06-30 08:00:00 +01:00
|
|
|
black: '#000',
|
2021-09-08 23:13:12 +01:00
|
|
|
blue: {
|
|
|
|
primary: '#24608A',
|
|
|
|
},
|
2021-06-30 08:00:00 +01:00
|
|
|
current: 'currentColor',
|
2022-10-22 12:19:47 +01:00
|
|
|
grey: colours.stone,
|
2021-06-30 08:00:00 +01:00
|
|
|
inherit: 'inherit',
|
|
|
|
transparent: 'transparent',
|
2021-06-30 08:00:00 +01:00
|
|
|
white: '#fff'
|
2021-06-30 08:00:00 +01:00
|
|
|
}
|