-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 805 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 805 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
34
35
36
37
38
const withMT = require('@material-tailwind/react/utils/withMT')
const colors = require('tailwindcss/colors')
module.exports = withMT({
content: [
'./components/**/*.js',
'./pages/**/*.js',
'./styles/globals.css',
],
darkMode: 'class',
theme: {
extend: {
colors: {
...colors,
dark: '#000000',
light: '#fdfdfd',
black: '#000000',
white: '#ffffff',
slate: {
...colors.slate,
900: '#151515',
800: '#252525',
700: '#353535',
600: '#454545',
500: '#555555',
400: '#b5b5b5',
300: '#c5c5c5',
200: '#d5d5d5',
100: '#e5e5e5',
50: '#f5f5f5',
},
},
screens: {
'3xl': '3000px',
},
},
},
})