-
Notifications
You must be signed in to change notification settings - Fork 38
/
tailwind.config.ts
48 lines (47 loc) · 1.21 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
import type { Config } from 'tailwindcss';
import withMT from '@material-tailwind/react/utils/withMT';
const config: Config = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx}',
'./node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}',
'./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'custom-dark': '#1A1D26',
'custom-orange': '#F97316',
'custom-grey': '#656464',
},
backgroundColor: {
dark: {
background: '#121212',
surface: '#1E1E1E',
surface2: '#242424',
surface3: '#2A2A2A',
},
light: {
primary: '#FFFFFF',
secondary: '#F7FAFC',
card: '#FFFFFF',
},
},
textColor: {
dark: {
primary: '#FFFFFF',
secondary: '#CBD5E0',
},
light: {
primary: '#1A1D26',
secondary: '#4A5568',
},
},
},
},
plugins: [require('flowbite/plugin')],
};
export default withMT(config);