-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
47 lines (46 loc) · 1.36 KB
/
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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/sections/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
container: {
center: true,
},
colors: {
"gradient-primary": "var(--gradient-primary)",
"gradient-secondary": "var(--gradient-secondary)",
"soft-white": "var(--white)",
"soft-black": "var(--black)",
"blue-flame": "#5c53fe",
"discord-logo": "#5865f2",
"hot-magenta": "#dc02ce",
background: "#0D192B",
"discord-white": {
DEFAULT: "#F2F3F5",
300: "#DBDEE1",
600: "#D7D9DC",
},
"discord-black": {
DEFAULT: "#313338",
100: "#767A83",
400: "#404249",
900: "#202225",
},
},
backgroundImage: {
hero: "radial-gradient(circle at right 30% top 30%, var(--gradient-primary), var(--gradient-secondary), var(--gradient-secondary))",
nav: "radial-gradient(circle at right 20% bottom 20%, var(--gradient-primary), var(--gradient-secondary))",
},
fontFamily: {
"space-grotesk": ["var(--font-space-grotesk)"],
},
},
},
plugins: [],
} satisfies Config;