-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 721 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 721 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
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./src/components/**/*.{ts,tsx,js,jsx}',
'./src/pages/**/*.{ts,tsx,js,jsx}',
],
theme: {
extend: {
fontFamily: {
display: ['Montserrat', 'system-ui', 'sans-serif'],
body: ['Montserrat', 'system-ui', 'sans-serif'],
},
screens: {
xsm: '370px',
},
colors: {
secondary: {
50: '#f7f7f8',
100: '#eeeef0',
200: '#dadadd',
300: '#b9b9c0',
400: '#93949d',
500: '#767781',
600: '#5f5f6a',
700: '#52525b',
800: '#434349',
900: '#3a3a40',
},
},
},
},
plugins: [],
};