-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (54 loc) · 1.47 KB
/
tailwind.config.js
File metadata and controls
56 lines (54 loc) · 1.47 KB
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
let plugin = require("tailwindcss/plugin");
module.exports = {
mode: "jit",
content: ["./src/**/*.{js,jsx,ts,tsx}"],
plugins: [
plugin(function ({ addVariant }) {
addVariant("third", "&:nth-child(3)");
addVariant("fourth", "&:nth-child(4)");
addVariant("fifth", "&:nth-child(5)");
}),
],
theme: {
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
lato: ["Lato", "sans-serif"],
ibm: ["IBM Plex Sans Thai Looped", "sans-serif"],
sora: ["Sora", "sans-serif"],
oxygen: ["Oxygen", "sans-serif"],
istok: ["Istok Web", "sans-serif"],
fatface: ["Abril Fatface", "cursive"],
crete: ["crete", "serif"],
},
extend: {
boxShadow: {
fadeBackground: "0 -10px 18px 18px #18181b inset",
logoShadow: "1px 0px 0px 0px white",
},
colors: {
"indigo-dye": "#00487C",
bittersweet: "#FF6663",
magnolia: "#FCF7FF",
charcoal: "#2F4858",
xiketic: "#020122",
background: "#2c3440",
primary: "#F2F2F2",
secondary: "#34D1BF",
"red-pigment": "#FF0022",
"red-salsa": "#F03A47",
crayola: "#FFE66D",
"blue-jeans": "#20A4F3",
"radical-red": "#FF3366",
"slate-1000": "#141414",
"slate-1100": "#0A0A0A",
},
dropShadow: {
"3xl": "0 1px 2px rgba(0, 0, 0, .8)",
},
maxWidth: {
"4/5": "60rem",
},
},
},
};