forked from Ogstevyn/payeasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
84 lines (82 loc) · 2.21 KB
/
tailwind.config.ts
File metadata and controls
84 lines (82 loc) · 2.21 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
brand: {
50: "#f0f4ff",
100: "#dbe4ff",
200: "#bac8ff",
300: "#91a7ff",
400: "#748ffc",
500: "#5c7cfa",
600: "#4c6ef5",
700: "#4263eb",
800: "#3b5bdb",
900: "#364fc7",
},
accent: {
50: "#e6fcf5",
100: "#c3fae8",
200: "#96f2d7",
300: "#63e6be",
400: "#38d9a9",
500: "#20c997",
600: "#12b886",
700: "#0ca678",
800: "#099268",
900: "#087f5b",
},
dark: {
50: "#f8f9fa",
100: "#f1f3f5",
200: "#e9ecef",
300: "#dee2e6",
400: "#ced4da",
500: "#adb5bd",
600: "#9ca3af",
700: "#495057",
800: "#343a40",
900: "#212529",
950: "#0a0a0f",
},
},
fontFamily: {
sans: ["var(--font-inter)", "system-ui", "-apple-system", "sans-serif"],
display: ["var(--font-space-grotesk)", "system-ui", "sans-serif"],
mono: ["var(--font-jetbrains-mono)", "ui-monospace", "monospace"],
},
animation: {
"fade-in": "fadeIn 0.6s ease-out forwards",
"slide-up": "slideUp 0.6s ease-out forwards",
"float": "float 6s ease-in-out infinite",
"glow": "glow 3s ease-in-out infinite",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
slideUp: {
"0%": { opacity: "0", transform: "translateY(20px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
float: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-10px)" },
},
glow: {
"0%, 100%": { boxShadow: "0 0 20px rgba(92, 124, 250, 0.3)" },
"50%": { boxShadow: "0 0 40px rgba(92, 124, 250, 0.6)" },
},
},
},
},
plugins: [],
};
export default config;