This repository has been archived on 2024-03-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
timekeeper/tailwind.config.js
2022-01-07 12:43:47 -08:00

17 lines
255 B
JavaScript

const colors = require('tailwindcss/colors')
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
...colors,
},
},
},
variants: {
extend: {},
},
plugins: [],
}