-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
43 lines (42 loc) · 1.12 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
import { type Config } from "tailwindcss";
export default {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js",
"node_modules/preline/dist/*.js",
"node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primary: "#1A1E22",
primary_yellow: "#FFD550",
discord_purple: "#7289DA",
light_yellow: "#FFF1B8",
primary_gray: "#D1D1D1",
secondary: "#FFFFFF",
light_purple: "#D0C3FC",
build: "#FC6C3F",
discover: "#FF3E9E",
explore: "#EB6A65",
ignite: "#87DE65",
hack: "#A27BFC",
launch: "#11CEBB",
reach: "#6FA4F4",
},
height: {
"128": "32rem", // Adds h-128 for 32rem/512px height
"144": "36rem", // Adds h-144 for 36rem/576px height
"160": "40rem", // Adds h-160 for 40rem/640px height
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("flowbite/plugin"),
require("preline/plugin"),
],
} satisfies Config;