mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
21 lines
468 B
JavaScript
21 lines
468 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
const colors = require("tailwindcss/colors");
|
|
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: colors.purple,
|
|
secondary: colors.sky,
|
|
},
|
|
fontFamily: {
|
|
sans: ["'Inter'", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
darkMode: "class",
|
|
}; |