forked from Eleska-Project-Organization/eleskaProje
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (31 loc) · 759 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (31 loc) · 759 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: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/flowbite/**/*.{jsx,js}",
"./node_modules/tw-elements/dist/js/**/*.{jsx,js}",
],
theme: {
extend: {
colors: {
red: {
primary: "#E12A32",
},
},
screens: {
xsm: "340px",
sm: { max: "639px" },
md: { max: "769px" },
lg: { min: "770px", max: "1024px" },
xl: { min: "1025px" },
},
boxShadow: {
Cs: "rgba(0, 0, 0, 0.24) 0px 3px 8px",
sliderShadow: "rgba(0, 0, 0, 0.35) 0px 5px 15px",
},
},
},
plugins: [
require("tw-elements/dist/plugin", "flowbite/plugin", "tailwind-scrollbar"),
],
};