-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
61 lines (60 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* eslint-disable */
const colors = require('tailwindcss/colors')
module.exports = {
important: false,
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./modules/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class', // or 'media' or 'class'
theme: {
colors: {
neutral: colors.neutral,
black: colors.black,
white: colors.white,
gray: colors.gray,
slate: colors.slate,
red: {
...colors.red,
DEFAULT: '#A1100F',
},
yellow: {
...colors.yellow,
DEFAULT: '#F9D401',
},
green: colors.green,
blue: {
...colors.blue,
DEFAULT: '#313459',
},
indigo: colors.indigo,
rose: colors.rose,
orange: {
...colors.orange,
DEFAULT: '#DB7D2F',
}
},
fontFamily: {
sans: ['sans-serif'],
},
extend: {
transitionProperty: {
'width': 'width'
},
gridTemplateColumns: {
'13': 'repeat(13, minmax(0, 1fr))',
}
},
maxHeight: {
'screen-40': '40vh',
'screen-50': '50vh',
'screen-60': '60vh',
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
],
}