generated from Iraq-RBC-Capstones-2021/Next-Redux-Project-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.12 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
module.exports = {
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./hooks/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
height: {
"70v": "70vh",
},
colors: {
primary: "#FF886C",
accent: "#FBEDE6",
grey: "#E4E4E7",
black: "#1A1A1A",
aqua: "#1890FF",
grass: "#52C41A",
},
fontFamily: {
rubik: ["Rubik", "sans-serif"],
},
animation: {
marquee: "marquee 10s linear 0.6s infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
},
spacing: {
128: "32rem",
144: "36rem",
},
},
},
variants: {
extend: {
brightness: ["responsive", "hover"],
translate: ["responsive", "group-hover", "hover", "focus"],
animation: ["hover", "focus", "group-hover"],
},
},
plugins: [
require("@tailwindcss/line-clamp"),
require("@tailwindcss/custom-forms"),
],
};