-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 977 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{html,js,vue}"
],
theme: {
extend: {
// Add a custom font family
fontFamily: {
'primary': ['Vonique64', 'serif'],
'secondary': ['GlorifyDEMO', 'serif'],
'ternary': ['"TeX Gyre Adventor"', 'serif'],
},
colors: {
leaf: {
DEFAULT: '#1A6668',
dark: '#1B5257',
darker: '#025035',
},
ecstasy: {
DEFAULT: '#C46137',
dark: '#9F4428',
},
cinnamon: {
light: '#F8EFE0',
DEFAULT: '#F1E6D1',
dark: '#EBD9B6',
darker: '#C9B37C'
}
},
},
},
plugins: [],
}