-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (28 loc) · 675 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (28 loc) · 675 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
const { fontFamily } = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
purge: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./layouts/**/*.{js,ts,jsx,tsx}',
],
mode: 'jit',
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
'custom-blue': '#375EF1',
'twitter-blue': '#1da1f2',
bluegray: colors.blueGray,
},
},
fontFamily: {
sans: ['Inter', ...fontFamily.sans],
mono: ['Menlo', ...fontFamily.mono],
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
};