56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: ["class"],
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: "#8b5cf6",
|
|
light: "#a78bfa",
|
|
dark: "#7c3aed",
|
|
},
|
|
secondary: {
|
|
DEFAULT: "#ec4899",
|
|
light: "#f472b6",
|
|
dark: "#db2777",
|
|
},
|
|
accent: {
|
|
DEFAULT: "#06b6d4",
|
|
light: "#22d3ee",
|
|
dark: "#0891b2",
|
|
},
|
|
background: "#0a0a0f",
|
|
surface: "#1a1a1f",
|
|
border: "#2a2a2f",
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "sans-serif"],
|
|
mono: ["JetBrains Mono", "monospace"],
|
|
},
|
|
animation: {
|
|
"slide-in": "slideIn 0.2s ease-out",
|
|
"fade-in": "fadeIn 0.2s ease-in-out",
|
|
},
|
|
keyframes: {
|
|
slideIn: {
|
|
"0%": { transform: "translateY(-10px)", opacity: "0" },
|
|
"100%": { transform: "translateY(0)", opacity: "1" },
|
|
},
|
|
fadeIn: {
|
|
"0%": { opacity: "0" },
|
|
"100%": { opacity: "1" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|
|
|
|
export default config;
|