-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
43 lines (42 loc) · 1.03 KB
/
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
/*
Explore configuration options docs https://tailwindcss.com/docs/configuration#configuration-options
Or check the default configuration https://unpkg.com/browse/tailwindcss@latest/stubs/defaultConfig.stub.js
*/
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
transparent: 'transparent',
'bg-color-s': '#090e15',
'bg-color-e': '#4e5760',
'bg-chat-color-s': '#3e4c5b',
'bg-chat-color-e': '#c3cdd6',
primary: '#49627d',
'primary-darker': '#3a5671',
secondary: '#627b98',
gray: '#4a5767',
'dark-gray': '#131b26',
white: '#ffffff',
red: '#f8000f',
green: '#009d23',
'transparent-black': 'rgba(0,0,0, .52)'
},
fontFamily: {
sans: ['Lato', 'sans-serif'],
serif: ['Merriweather', 'serif']
},
extend: {
spacing: {
'8xl': '96rem',
'9xl': '128rem'
},
borderRadius: {
'4xl': '2rem'
},
height: {
'room-height': '96%'
}
}
},
plugins: []
}