-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (33 loc) · 962 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'orange-primary': '#D87D4A',
'black-near': '#101010',
'orange-pale': '#fbaf85',
'gray-base': '#F1F1F1',
'gray-dark': '#4C4C4C',
'gray-light': '#FAFAFA',
'red-primary': '#CD2C2C',
'black-opaque': 'rgba(0,0,0,0.4)',
},
backgroundImage: {
'circle-pattern': "url('/home/desktop/pattern-circles.svg')",
'speaker-banner-mobile': "url('/home/mobile/image-speaker-zx7.jpg')",
'speaker-banner-tablet': "url('/home/tablet/image-speaker-zx7.jpg')",
'speaker-banner-desktop': "url('/home/desktop/image-speaker-zx7.jpg')",
},
},
screens: {
md: '768px',
lg: '1200px',
},
},
plugins: [],
}