-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (71 loc) · 1.56 KB
/
tailwind.config.js
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require("tailwindcss/colors");
const newColors = {
...colors,
primary: "#EDB8B8",
accent: "#B8CDED",
secondary: "#B8CDED",
link: "#80ED99",
black: "#272727",
"light-gray": "#F5F5F5",
};
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "1180px",
xl: "1320px",
},
colors: {
...newColors,
},
backgroundColor: {
...newColors,
},
textColor: {
...newColors,
"primary-on-accent": "#19323C",
"background-primary": "#22577A",
},
extend: {
backgroundImage: {
"home-pattern": "url('/images/the_scrapbookers.png')",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "translateX(-8deg)" },
"50%": { transform: "rotate(8deg)" },
},
slide: {
"0%, 100%": { transform: "translateX(0px)" },
"50%": { transform: "translateX(3px)" },
},
},
letterSpacing: {
titles: ".3rem",
},
animation: {
wiggle: "wiggle 1s ease-in-out infinite",
slide: "slide 1s ease-in-out infinite",
},
screens: {
"3xl": "1600px",
"4xl": "1900px",
},
spacing: {
128: "32rem",
144: "36rem",
},
borderRadius: {
"4xl": "2rem",
},
fontFamily: {
bodoni: ["var(--font-bodoni)"],
manrope: ["var(--font-manrope)"],
},
},
},
plugins: [],
};