mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
27 lines
555 B
JavaScript
27 lines
555 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ["class"],
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
prefix: "",
|
|
theme: {
|
|
container: {
|
|
center: "true",
|
|
padding: "2rem",
|
|
screens: {
|
|
"2xl": "1400px",
|
|
"3xl": "1920px",
|
|
},
|
|
},
|
|
extend: {
|
|
colors: {
|
|
background: "hsl(var(--background))",
|
|
foreground: "hsl(var(--foreground))",
|
|
primary: {
|
|
DEFAULT: "hsl(var(--primary))",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|