-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
68 lines (67 loc) · 1.62 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "15px",
},
},
screens: {
sm: "500px",
md: "768px",
lg: "960px",
xl: "1280px",
},
extend: {
fontFamily: {
bangers: [`var(--font-bangers)`, "sans-serif"],
quicksand: [`var(--font-quicksand)`, "sans-serif"],
robotoCondensed: [`var(--font-robotoCondensed)`, "sans-serif"],
logoGuys: "var(--font-orbitron)",
},
colors: {
primary: "#d1411e",
secondary: "#ffa323",
tertiary: "#331812",
black: "#231714",
orange: "#FF7A30",
},
backgroundImage: {
pattern: "url('/pattern.png')",
},
backgroundSize: {
"size-200": "200% 200%",
},
backgroundPosition: {
"pos-0": "0% 0%",
"pos-100": "100% 100%",
},
keyframes: {
rotation: {
"0%": { transform: "translateY(100%)" },
"100%": {
transform: "translateY(0) rotate(360deg)",
},
},
slide: {
"0%": { transform: "translateX(-100%)" },
"100%": {
transform: "translateX(0)",
},
},
},
animation: {
rotation: "rotation .8s ease-in-out",
slide: "slide .5s ease-in-out",
},
},
},
plugins: [require("tailwind-scrollbar"), "tailwindcss-animate"],
};
export default config;