-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (72 loc) · 1.66 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
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
important: true,
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fill: theme => ({
'red': theme('colors.red.500'),
'green': theme('colors.green.500'),
'blue': theme('colors.blue.500'),
'orange': theme('colors.orange.500')
}),
extend: {
screens: {
'3xl': '1800px',
'big': '2000px'
},
maxHeight: {
blogImg: '600px',
featured: '450px',
about: '550px',
'5/6': '83.333333%',
},
padding: {
18: '72px',
},
maxWidth: {
'3/4': '75%',
'2/3': '66.66666%',
mobileImg: '100px',
'8': '32px',
},
minWidth: {
keepWlg: '56rem',
keepWmd: '48rem',
keepWsm: '32rem',
},
minHeight: {
featuredlg: '400px',
featuredmd: '300px',
featuredbase: '200px',
},
colors: {
'terminalGreen': '#16C60C',
'background': '#24305E',
'hover-bg': '#374785',
'highlight': '#A8D0E6',
'border': '#374785',
'red-high': '#F76C6C',
'border-red':'#F76C6C',
'yellow': '#F8E9A1',
orange: colors.orange,
trueGray: colors.trueGray,
},
fontFamily: {
'blogBody': ['Inter', 'sans-serif']
},
marginTop: {
'featuredPadlg': '-60px',
'featuredPad': '-20px',
},
}
},
variants: {
extend: {
opacity: ['disabled'],
fill: ['group-hover', 'hover', 'focus'],
},
},
plugins: [],
}