-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtailwind.config.js
64 lines (60 loc) · 1.6 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
blue: "#1A589B",
red: "#DC4492",
yellow: "#FDCC49",
grey: "#969696",
"icolor" :'#F5F5FF',
"light-black":"#212121",
"event-grey" : "#D9D9D9",
"event-text-grey" : "#0B1641",
'gry': '#F3F3F3',
'dark-gry': '#6B6B6B',
"light-black": "#212121",
"main-navbar": "#0B1641",
"event-grey": "#D9D9D9",
"event-text-grey": "#0B1641",
gry: "#F3F3F3",
"dark-gry": "#6B6B6B",
},
fontFamily: {
playfair: ["Playfair Display", "serif"],
opensans: ["Open Sans", "sans-serif"],
Montserrat: ["Montserrat", "sans-serif"],
popins: ["Poppins", "sans-serif"],
inter: ["'Inter'", "sans-serif"],
gelasio: ["'Gelasio'", "serif"],
},
},
screens: {
txs: "280px",
xxs: "400px",
xs: "480px",
ss: "620px",
sm: "768px",
smd: "900px",
md: "1060px",
lg: "1200px",
xl: "1700px",
},
},
plugins: [
function ({ addUtilities }) {
const newUtilities = {
'.hide-scrollbar::-webkit-scrollbar': {
display: 'none',
},
'.hide-scrollbar': {
scrollbarWidth: 'none', /* Firefox 64 */
msOverflowStyle: 'none', /* IE and Edge */
},
};
addUtilities(newUtilities, ['responsive', 'hover']);
},
],
});