forked from CoinHippo-Labs/connext-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (46 loc) · 1013 Bytes
/
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
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: {
animation: {
'spin-one-time': 'spin 0.3s linear',
},
colors: {
...colors,
dark: '#000000',
light: '#ffffff',
black: '#1a1919',
white: '#ececec',
slate: {
...colors.slate,
900: '#1d1c1c',
850: '#252525',
800: '#292929',
750: '#313131',
700: '#343434',
600: '#4a4a4a',
500: '#a5a5a5',
400: '#b5b5b5',
300: '#cbcbcb',
200: '#d6d6d6',
100: '#e1e1e1',
50: '#f0f0f0',
},
indigo: {
...colors.indigo,
950: '#2e488e',
},
},
screens: {
'3xl': '3000px',
},
},
},
})