-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
31 lines (30 loc) · 917 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./*.html'],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1048px',
},
extend: {
colors: {
rode1: '#ac996f',
rode2: '#f8f9fb',
},
backgroundImage: {
'hero-large': "url('/asset/hero-image.jpg')",
'hero-large-1': "url('/asset/rode-nth100.jpg')",
'hero-large-2': "url('/asset/rode-nt.jpg')",
'hero-large-3': "url('/asset/rode-podmic.jpg')",
'hero-large-4': "url('/asset/WIGOII-WEBHEADER.jpg')",
'hero-large-5': "url('/asset/rode-nt-usb.jpg')",
},
fontFamily: {
Inter: "'Inter', sans-serif",
},
},
},
plugins: [],
};