-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
55 lines (47 loc) · 1.41 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
52
53
54
55
import type { Config } from 'tailwindcss';
const withMT = require('@material-tailwind/react/utils/withMT');
const tPlugin = require('@tailwindcss/typography');
const config: Config = withMT({
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./public/svg/svgReactComponent/*.{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}',
],
plugins: [tPlugin],
theme: {
extend: {
screens: {
sm: '443px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
fontFamily: {
basic: ['SairaCondensed-Medium', 'sans-serif'],
protest: ['Protest Strike', 'sans-serif'],
},
colors: {
primary: '#ff6e59',
secondary: '#ffece9',
success: '#4ab783',
basic: '#F2CFC2',
warning: '#ff9800',
error: '#f36140',
transparent: 'transparent',
text: '#0D0D0D',
backgroud: '#FaFaFa',
sub: '#673ce6',
sub2: '#e1d8fa',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
});
export default config;