-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (34 loc) · 960 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
41
/** @type {import('tailwindcss').Config} */
export default {
content: [ "./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",],
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily:{
libre: ['"Libre Baskerville"']
},
spacing:{
'2/3': '66.666667%',
'5/6': '83.333333%',
},
backgroundImage:{
'hero-pattern': "url('/src/img/hero-banner-7462.jpg')",
},
colors: {
'b-primary': '#D67476',
'b-secondary': '#003060',
'b-light': '#F5EFE0',
'bk-primary': '#D67476',
'bk-secondary': '#003060',
'bk-light': '#F5EFE0',
'primary': '#10B981', //green-600 from tailwindcss palette = #10B981
'light': '#dfdbde',
'darker': '#46261a',
'secondary': '#fbbb40',
'brand':`rgb(var(--color-brand)/<alpha-value>)`,
}
},
},
plugins: [],
}