tinovisas/frontend/tailwind.config.js

32 lines
660 B
JavaScript

/** @type {import(tailwindcss).Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}"
],
darkMode: "class",
theme: {
extend: {
colors: {
dark: {
900: "#0a0a0f",
800: "#12121a",
700: "#1a1a2e",
600: "#24243a",
500: "#2d2d44"
},
accent: {
blue: "#3b82f6",
cyan: "#06b6d4",
purple: "#8b5cf6",
green: "#10b981",
red: "#ef4444",
orange: "#f59e0b"
}
}
}
},
plugins: []
};