-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 944 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 944 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
41
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
transitionTimingFunction: {
"in-expo": "cubic-bezier(0.95, 0.05, 0.795, 0.035)",
"out-expo": "cubic-bezier(0.19, 1, 0.22, 1)",
},
},
colors: {
primary: "#C59CEF",
dprimary: "#7E22CE",
white: "#fff",
black: "#111",
yellow: "#FFBE5E",
gray: "#606060",
},
fontWeight: {
thin: "100",
hairline: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
extrabold: "800",
"extra-bold": "800",
black: "900",
},
fontFamily: {
display: ["Cherry Cream Soda"],
sans: ["Poppins", "sans-serif"],
},
backgroundImage: {
"hero-bg": "url('./assets/hero-bg.svg')",
},
},
plugins: [],
};