-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
86 lines (86 loc) · 2.17 KB
/
tailwind.config.js
File metadata and controls
86 lines (86 loc) · 2.17 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
85
86
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
secondary: {
50: "#f3f7fc",
100: "#e6f0f8",
200: "#c8dfef",
300: "#98c4e1",
400: "#61a5cf",
500: "#3c8abb",
600: "#2c6f9d",
700: "#245880",
800: "#224c6a",
900: "#214159",
950: "#162a3c",
},
primary: {
50: "#f1fcf2",
100: "#dff9e2",
200: "#c1f1c7",
300: "#91e49c",
400: "#59cf69",
500: "#33b545",
600: "#259435",
700: "#20752c",
800: "#1e5d28",
900: "#1a4d22",
950: "#092a0f",
},
accent: {
50: "#fff8eb",
100: "#ffebc6",
200: "#ffd588",
300: "#ffbf5a",
400: "#ff9f20",
500: "#f97a07",
600: "#dd5502",
700: "#b73806",
800: "#942a0c",
900: "#7a240d",
950: "#461002",
},
gray: {
50: "#f8f9fa",
100: "#f1f3f5",
200: "#e9ecef",
300: "#dee2e6",
400: "#ced4da",
500: "#adb5bd",
600: "#868e96",
700: "#495057",
800: "#343a40",
900: "#212529",
950: "#0a0c0e",
},
},
fontFamily: {
sans: ["Montserrat", "sans-serif"],
heading: ["Montserrat", "sans-serif"],
},
animation: {
"fade-in": "fadeIn 0.5s ease-in-out forwards",
"slide-up": "slideUp 0.5s ease-out forwards",
"slide-down": "slideDown 0.5s ease-out forwards",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
slideUp: {
"0%": { transform: "translateY(20px)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
slideDown: {
"0%": { transform: "translateY(-20px)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
},
},
},
plugins: [],
};