-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (43 loc) · 881 Bytes
/
tailwind.config.js
File metadata and controls
45 lines (43 loc) · 881 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
38
39
40
41
42
43
44
45
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: [
'./pages/*.js',
'./pages/**/*.js',
'./components/*.js',
'./components/**/*.js',
],
theme: {
boxShadow: {
DEFAULT: '#11130f 0px 14px 20px;',
},
maxWidth: {
'screen-2xl': '1440px',
'screen-xl': '1280px',
'screen-lg': '1024px',
'screen-md': '768px',
'screen-sm': '640px',
},
extend: {
colors: {
'grey-chez': {
300: '#CBCFCD',
400: '#9BA19A',
500: '#8D8B8C',
},
brown: {
500: '#7E7464',
},
dark: {
500: '#23261E',
450: 'hsla(83,12%,13%,0.4)',
},
},
gridTemplateRows: {
// Simple 8 row grid
7: 'repeat(7, minmax(0, 1fr))',
},
},
},
variants: {},
plugins: [],
};