-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
30 lines (30 loc) · 999 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
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
fontFamily: {
gizmo: ["Gizmo", "sans-serif"],
nordiqueproregular: ["NordiqueProRegular", "sans-serif"],
sourcesanspro: ["Source Sans Pro", "sans-serif"],
},
extend: {
colors: {
'primary-blue': '#0E3E8A',
'primary-green': '#01A28D',
'primary-turquoise': '#0092B1',
'primary-lightblue': '#005CA8',
'pale-green': '#E6F6F4',
'default-text': '#736969',
'aftercare-blue': '#0092b1',
'holistic-purple': '#a380b8',
'appointment-text': '#fddbaf',
},
backgroundImage: {
'beauty-banner-lg': "url('../src/assets/banners/beauty-lg.jpg')",
'holistic-banner-lg': "url('../src/assets/banners/holistic-lg.jpg')",
'signoff-lg': "url('../src/assets/footer/TTC_Website Signoff_Large.jpg')",
'floral-lt': "url('../src/assets/branding/FloralDevice_LtPastel.svg')",
},
},
},
plugins: [],
}