-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 956 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 956 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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
gray: {
...colors.neutral,
"1000": "rgb(15,15,15)"
},
cyan: colors.cyan,
"light-blue": colors.sky
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
maxWidth: {
'8xl': '96rem',
'9xl': '110rem',
'10xl': '128rem',
},
},
screens: {
...defaultTheme.screens,
'2xl': '1600px',
},
},
variants: {
extend: {},
},
plugins: [require('tailwind-scrollbar')],
};