forked from samuelkraft/routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (39 loc) · 994 Bytes
/
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
const { fontFamily } = require('tailwindcss/defaultTheme') // eslint-disable-line
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Proxima Nova', ...fontFamily.sans],
},
colors: {
forest: {
lightest: '#E8F5D6',
light: '#E0EECD',
DEFAULT: '#75A134',
dark: '#466419',
darkest: '#2F3427',
},
},
textColor: {
primary: 'var(--olive12)',
secondary: 'var(--olive11)',
tertiary: 'var(--olive8)',
},
backgroundColor: {
primary: 'var(--olive1)',
button: 'var(--bg-button)',
'button-hover': 'var(--bg-button-hover)',
},
borderColor: {
primary: 'var(--olive6)',
'primary-hover': 'var(--olive7)',
background: 'var(--olive1)',
},
},
maxWidth: {
'1/2': '50%',
},
},
plugins: [],
}