-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
46 lines (45 loc) · 1.14 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
/** @type {import('tailwindcss').Config} */
module.exports = {
// IMPORTANT FOR TAILWIND TO APPLY TO ALL OUR HTML FILES (ADD HANDLEBARS FILES HERE EVENTUALLY)
content: ["./public/**/*.{html,js}",
"./src/**/*.{html,js}",
"./views/**/*.{html,js,hbs}"],
theme: {
extend: {
fontFamily: {
'primary': ['Montserrat', 'sans-serif'],
'secondary': ['Crimson-Pro', 'serif']
},
colors: {
'primary':'#202020',
'secondary': '#F5CB5C',
'gold': '#F5CB5C',
'silver': '#797979',
'success':'#238636',
'danger': '#da3633',
'success-hover': '#2ea043',
'grayed': 'rgb(89, 89, 89)',
},
height: {
'80-screen': '80vh',
},
minHeight: {
'300': '300px'
},
width: {
'18': '4.5rem',
'98%': '98%'
},
minWidth: {
'1/2': '50%',
},
maxWidth: {
'80': '80%'
},
backgroundImage: {
'bg-henry-sy': "url('../images/henry_sy-bg.jpg')" // can't figure this out yet. please find a way
}
},
},
plugins: [],
}