-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
51 lines (49 loc) · 1.27 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
const withMT = require('@material-tailwind/react/utils/withMT');
const config: Config = withMT({
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./Components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}',
'./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
sm: '425px',
md: '768px',
lg: '1024px',
},
backgroundSize: {
'50%': '50%',
contain: 'contain',
cover: 'cover',
fill: 'fill',
},
extend: {
colors: {
primary: '#FB72B4',
secondary: '#FFD4E9',
text: '#FF59A9',
fill: '#EFEFEF',
bgfill: '#7E7E7E',
chat: '#5B5B5B',
bglight: '#EFEFEF',
footer: '#FFB8DA',
send: '#FB72B4',
users: '#848484',
time: '#7E7E7E',
},
backgroundImage: {
'trash-can': "url('../public/icon_trash.svg')",
'camera-icon': "url('../public/icon_camera.svg')",
'mountain-icon': "url('../public/icon_mountain.svg')",
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
});
export default config;