-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (38 loc) · 906 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
40 lines (38 loc) · 906 Bytes
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
brand: {
50: "#f0f7ff",
100: "#e0efff",
200: "#b9dfff",
300: "#7cc4ff",
400: "#36a6ff",
500: "#0c8ce9",
600: "#006fc7",
700: "#0058a1",
800: "#044b85",
900: "#0a3f6e",
},
},
animation: {
"fade-in": "fadeIn 0.5s ease-in-out",
pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0", transform: "translateY(4px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
},
},
},
plugins: [],
};
export default config;