-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
91 lines (90 loc) · 1.97 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
89
90
91
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: false, // or 'media' or 'class'
variants: {
boxShadow: ['responsive', 'hover', 'focus'],
extend: {
inset: ['hover'],
}
},
theme: {
extend: {
boxShadow: {
normal: '0px 0px 20px rgba(20, 20, 20, 0.1)',
hover: '0px 5px 20px rgba(20, 20, 20, 0.15)',
nav: '0px 4px 8px rgba(20, 20, 20, 0.1)',
footer: '0px -12px 20px rgba(20, 20, 20, 0.1)'
},
backgroundSize: {
'0%': '0% 0%',
'50%': '50% 100%',
'75%': '75% 100%',
'100%': '100% 100%',
'125%': '125% 125%',
'150%': '150% 125%'
},
fontFamily: {
sans: ['Objectivity', 'sans-serif'],
},
minWidth: {
'1/4': '25vw',
'1/2': '50vw',
'3/4': '75vw',
'16': '4rem'
},
minHeight: {
'1/4': '25vh',
'1/2': '50vh',
'3/4': '75vh',
'8': '2rem'
}
},
colors: {
transparent: 'transparent',
current: 'currentColor',
red: {
primary: '#F84A5E',
secondary: '#FFB1BC'
},
yellow: {
primary: '#FFB700',
secondary: '#FFE898'
},
blue: {
primary: '#57CEFE',
secondary: '#AEE7FF'
},
green: {
primary: '#33D69F',
secondary: '#8AF4CF'
},
purple: {
primary: '#7A2FF2',
secondary: '#C6A5FB'
},
orange: {
primary: '#E75300',
secondary: '#F58647'
},
gray: {
darkest: '#1F2228',
dark: '#616161',
light: '#C7C7C7',
lighter: '#E0E0E0',
lightest: '#FAFAFA',
background: "#f9f7f9" // for 404 and partner pages only
},
black: {
primary: "#000000",
},
white: {
primary: '#FFFFFF',
}
}
},
variants: {
extend: {},
},
plugins: ['gatsby-plugin-postcss'],
}