Spaces:
Sleeping
Sleeping
File size: 886 Bytes
998d987 98b952a 998d987 98b952a 998d987 98b952a 998d987 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./lib/**/*.{ts,tsx}"
],
theme: {
extend: {
colors: {
background: "#09080f",
foreground: "#ede9f8",
primary: "#8b5cf6",
muted: "#1c1730",
card: "#120f1e",
border: "#2e2255"
},
fontFamily: {
display: ["var(--font-display)", "sans-serif"]
},
borderRadius: {
"2xl": "1rem"
},
boxShadow: {
soft: "0 10px 30px rgba(139, 92, 246, 0.12)"
},
backgroundImage: {
hero: "radial-gradient(circle at top right, rgba(139,92,246,0.12), transparent 50%), radial-gradient(circle at 15% 20%, rgba(109,40,217,0.10), transparent 45%)"
}
}
},
plugins: []
};
export default config;
|