const colors = require('tailwindcss/colors') module.exports = { purge: { enabled: false }, darkMode: false, // or 'media' or 'class' theme: { colors: { // Build your palette here teal: colors.teal, gray: colors.gray, white: colors.white, indigo: colors.indigo, green: colors.green, red: colors.red, black: colors.black } }, variants: { extend: {}, }, plugins: [ require("@tailwindcss/forms"), require("@tailwindcss/typography"), require("@tailwindcss/aspect-ratio"), ], }