-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1021 Bytes
/
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
module.exports = {
purge: {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
options: {
safelist: {
standard: [/^[\w:]*col-start-/, /^[\w:]*col-span-/, /^[\w:]*max-w-/],
},
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: { midnight: "#183e60" },
fontFamily: {
Arima: ["Arima Madurai"],
Galdeano: ["Galdeano"],
Hind: ["Hind"],
},
},
// https://coolors.co/1a535c-4ecdc4-f7fff7-ff6b6b-ffe66d
// https://coolors.co/0081a7-00afb9-fdfcdc-fed9b7-f07167
// textColor: {
// primary: "#0081A7",
// secondary: "#00AFB9",
// light: "#FDFCDC",
// cream: "#FED9B7",
// danger: "#F07167",
// },
container: {
center: true,
},
margin: {
sm: "8px",
md: "16px",
lg: "24px",
xl: "48px",
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
};