frontend/tailwind.config.js

16 lines
200 B
JavaScript
Raw Normal View History

2020-12-22 18:52:45 +00:00
module.exports = {
2021-04-15 17:43:43 +00:00
mode: 'jit',
2021-04-15 17:22:57 +00:00
purge: [ './src/**/*.svelte' ],
2020-12-22 18:52:45 +00:00
theme: {
2021-03-25 17:55:24 +00:00
extend: {
colors: {
reepolee: {
500: '#b40000',
600: '#9c0000',
700: '#750000'
}
}
2020-12-22 18:52:45 +00:00
}
}
};