Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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"),
- ],
- }
Advertisement
Add Comment
Please, Sign In to add comment