-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
46 lines (45 loc) · 1009 Bytes
/
tailwind.config.ts
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
46
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
padding: "15px",
},
screens: {
sm: "640px",
md: "768px",
lg: "960px",
xl: "1430px",
},
fontFamily: {
primary: "var(--font-cormorant_upright)",
secondary: "var(--font-open_sans)",
},
extend: {
colors: {
primary: {
DEFAULT: "#100e0e",
},
secondary: {
DEFAULT: "#787f8a",
},
accent: {
DEFAULT: "#c7a17a",
hover: "#a08161",
},
},
backgroundImage: {
hero_overlay: "url('/assets/hero/hero-overlay.png')",
opening_hours: "url('/assets/opening-hours/bg.png')",
footer: "url('/assets/footer/bg.png')",
},
},
},
plugins: [],
};
export default config;