controlpanel-old/frontend/tailwind.config.js

23 lines
397 B
JavaScript

let colors = require("tailwindcss/colors")
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}"
],
theme: {
extend: {
colors: {
neutral: colors.slate,
positive: colors.green,
urge: colors.violet,
warning: colors.yellow,
info: colors.blue,
critical: colors.red,
}
},
},
plugins: [
require("a17t"),
],
}