-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.ts
76 lines (75 loc) · 1.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { Config } from "tailwindcss";
export default {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./constants/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
"ibm-plex-sans": ["IBM Plex Sans", "sans-serif"],
"bebas-neue": ["var(--bebas-neue)"],
},
colors: {
primary: {
DEFAULT: "#E7C9A5",
admin: "#25388C",
},
green: {
DEFAULT: "#027A48",
100: "#ECFDF3",
400: "#4C7B62",
500: "#2CC171",
800: "#027A48",
},
red: {
DEFAULT: "#EF3A4B",
400: "#F46F70",
500: "#E27233",
800: "#EF3A4B",
},
blue: {
100: "#0089F1",
},
light: {
100: "#D6E0FF",
200: "#EED1AC",
300: "#F8F8FF",
400: "#EDF1F1",
500: "#8D8D8D",
600: "#F9FAFB",
700: "#E2E8F0",
800: "#F8FAFC",
},
dark: {
100: "#16191E",
200: "#3A354E",
300: "#232839",
400: "#1E293B",
500: "#0F172A",
600: "#333C5C",
700: "#464F6F",
800: "#1E2230",
},
gray: {
100: "#CBD5E1",
},
},
screens: {
xs: "480px",
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
backgroundImage: {
pattern: "url('/images/pattern.webp')",
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config;