-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (54 loc) · 1.65 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
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "media",
theme: {
extend: {
fontFamily: {
sans: ["Poppins", ...defaultTheme.fontFamily.sans],
serif: ["Newsreader", ...defaultTheme.fontFamily.serif],
display: ["Poppins", ...defaultTheme.fontFamily.sans],
},
gridTemplateColumns: {
50: "repeat(50, minmax(0, 1fr))",
},
colors: {
// Red
red: "#e0285c",
// Pink
pink: "#e5265c",
"light-pink": "#e7708d",
"pale-pink": "#ffeaf1",
// Green
green: "#465e44",
"light-green": "#71c39b",
"pale-green": "#e7f7ed",
// Yellow
yellow: "#ffa12b",
"light-yellow": "#fdc218",
"pale-yellow": "#fefaef",
// Blue
"dark-blue": "#282a3f",
// Black / White
white: "#fcfefb",
black: "#1e1e1e",
},
boxShadow: {
solid: "3px 3px 0 0 white",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
},
animation: {
wiggle: "wiggle 200ms ease-in-out",
},
},
},
}