// tailwind.config.js const colors = require('tailwindcss/colors') module.exports = { // ... theme: { extend: { colors: { orange: colors.orange, }, }, }, plugins: [ // ... require('@tailwindcss/forms'), ], }