forked from NebeyouMusie/NFT-Landing-Page
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
38 lines (37 loc) · 856 Bytes
/
tailwind.config.ts
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";
export default {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
neonGreen: "#00fafa",
darkBg: "#0A0A0A",
cardBg: "#151515",
neonPink: "#eb24f1", // Added new color
apeBlue: "#0085ef",
},
fontFamily: {
display: ["'Space Grotesk'", "sans-serif"],
body: ["Inter", "sans-serif"],
},
gridTemplateColumns: {
'gallery': 'repeat(auto-fill, minmax(280px, 1fr))',
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config;