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"), ], }