-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
45 lines (44 loc) 路 1.27 KB
/
Copy pathtailwind.config.ts
File metadata and controls
45 lines (44 loc) 路 1.27 KB
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
42
43
44
45
// tailwind.config.js
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/sections/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/data/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
heroDesktop: `url(/images/hero-desktop-2x.png)`,
heroTablet: `url(/images/hero-tablet-2x.png)`,
heroMobile: `url(/images/hero-mobile-2x.png)`,
contactsDesktop: `url(/images/contacts-desktop-2x.png)`,
contactsTablet: `url(/images/contacts-tablet-2x.png)`,
contactsMobile: `url(/images/contacts-mobile-2x.png)`,
},
screens: {
xs: '375px',
sm: '834px',
lg: '1440px',
},
colors: {
white: '#F5F3F3',
gray: '#888888',
darkGray: '#263238',
black: '#15161E',
darkOrange: '#FF6C00',
lightOrange: 'rgba(255, 108, 0, 0.3)',
bgAlpha: 'rgba(21, 22, 30, 0.95)',
},
fontFamily: {
rye: ['Rye', 'serif'],
playfair: ['Playfair Display', 'serif'],
orelega: ['Orelega One', 'serif'],
},
},
},
plugins: [],
};
export default config;