pompy.dev/packages/tailwind-config/tailwind.config.js

19 lines
343 B
JavaScript

const colors = require("tailwindcss/colors")
module.exports = {
content: [
// app content
`src/**/*.{js,ts,jsx,tsx}`,
// include packages if not transpiling
// "../../packages/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brandblue: colors.blue[500],
brandred: colors.red[500],
},
},
},
plugins: [],
}