-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
51 lines (51 loc) · 954 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
47
48
49
50
51
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./node_modules/flowbite-react/**/*.js",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
background: "#000000",
colors: {
primary: {
50: "#fff1f2",
100: "#ffe4e6",
200: "#fecdd3",
300: "#fda4af",
400: "#fb7185",
500: "#f43f5e",
600: "#e11d48",
700: "#be123c",
800: "#9f1239",
900: "#881337",
},
},
},
fontFamily: {
sans: ["Manrope", "sans-serif"],
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
"2col": "1170px",
"3col": "1568px",
"4col": "1972px",
announcement: "413px",
},
},
safelist: [
{
pattern: /(text|bg)-(green|blue|yellow|orange|red)-400/,
},
{
pattern: /bg-gray-(50|100|700|800|900)/,
},
],
plugins: [require("flowbite/plugin")],
};