This repository was archived by the owner on Oct 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
84 lines (84 loc) · 1.98 KB
/
tailwind.config.ts
File metadata and controls
84 lines (84 loc) · 1.98 KB
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
77
78
79
80
81
82
83
84
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}"
],
theme: {
colors: {
white: "#F9FAFF",
blue: {
50: "#f2f6fc",
100: "#e2ebf7",
200: "#ccddf1",
300: "#a8c7e8",
400: "#7faadb",
500: "#608dd1",
600: "#4d74c3",
700: "#4262b3",
800: "#3b5192",
900: "#344574",
950: "#1b2237"
},
yellow: {
50: "#fffdea",
100: "#fff7c5",
200: "#fff085",
300: "#ffe246",
400: "#ffd01b",
500: "#ffb003",
600: "#e28500",
700: "#bb5d02",
800: "#984708",
900: "#7c3b0b",
950: "#481d00"
},
grey: {
50: "#f7f8f8",
100: "#ededf1",
200: "#d7d9e0",
300: "#b5b8c4",
400: "#8c92a4",
500: "#6e7589",
600: "#585d71",
700: "#4a4e5e",
800: "#3e414e",
900: "#373a43",
950: "#24252d"
},
destructive: "#ef4444",
success: "#10b981"
},
fontFamily: {
montserrat: ["Montserrat", "sans-serif"],
magicRetro: ["Magic Retro", "sans-serif"]
},
extend: {
animation: {
"spin-slow": "spin 5s linear infinite",
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out"
},
backgroundImage: {
blueWaves: "url('/background/blue-wave-bg.svg')",
whiteWaves: "url('/background/white-wave-bg.svg')"
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" }
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" }
}
}
}
},
plugins: [
require("tailwindcss-animate")
]
};