-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
50 lines (48 loc) · 928 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
39
40
41
42
43
44
45
46
47
48
49
50
import type { Config } from "tailwindcss"
const config = {
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: {
dark: {
1: "#161925",
2: "#1C1F2E",
3: '#0E78F9',
4: "#2d3748",
},
orange: {
1: '#FF742E'
},
blue: {
1: '#0E78F9',
2: '#252A41'
},
violet: {
1: '#830EF9'
},
yellow: {
1: '#F9A90E'
}
},
backgroundImage: {
hero: "url('/hero-background.jpg')",
}
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config
export default config