-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
88 lines (86 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: 'media', // true/false or 'media' or 'class'
theme: {
extend: {
fontFamily: {
'montserrat': ['Montserrat', 'sans-serif'],
'fira-code': ['"Fira Code"']
},
borderWidth: {
DEFAULT: '1px',
'0': '0',
'1': '1px',
'2': '2px',
'3': '3px',
'4': '4px',
'5': '5px',
'6': '6px',
'7': '7px',
'8': '8px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
indigo: colors.indigo,
red: colors.red,
yellow: colors.yellow,
orange: colors.orange,
green: colors.green,
indigo: colors.indigo,
fuchsia: colors.fuchsia,
theme: {
white: {
classic: '#F8F8F8',
glass: '#E4E4E4',
},
yellow: {
F7B23B: '#F7B23B',
F6AA28: '#F6AA28',
F49F0A: '#F49F0A',
},
gray: {
250: '#292929',
200: '#303030',
150: '#3D3D3D',
100: '#474747',
50: '#7A7A7A',
},
dev: {
orange: '#F6AA28',
white: '#F8F8F8',
yellow: '#FBD99D',
green: '#7DCE82',
blue: '#6A98F0',
gray: '#C4C4C4',
}
}
},
spacing: {
'90': '344px',
},
boxShadow: {
yellow: '0px 0px 17px 0 #F49F0A',
},
cursor: {
none: "none",
},
animation: {
}
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
],
}