-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 819 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 819 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
safelist: [
{
pattern:
/bg|from|via|to-(slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(50|100|200|300|400|500|600|700|800|900|950)/,
},
],
variants: {
extend: {
visibility: ["group-hover"],
},
},
theme: {
extend: {
fontFamily: {
satoshi: ["Satoshi", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
colors: {
"primary-orange": "#FF5722",
bggrey: "e7eaee",
containergrey: "f1f5f9",
},
},
},
plugins: [],
};