-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 846 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 846 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 colors = require('tailwindcss/colors')
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
'title': ['Montserrat', 'sans-serif'],
'description': ['Open Sans', 'sans-serif']
},
colors: {
// Build your palette here
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.coolGray,
truegray: colors.gray,
red: colors.red,
},
extend: {
spacing: {
'108': '29rem',
'120': '30rem',
'128': '32rem',
'140': '35rem',
'144': '35.5rem',
'160': '40rem',
'180': '45rem'
},
},
},
variants: {
extend: {},
},
plugins: [],
}