-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (42 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
43 lines (42 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
// landing page bg images
backgroundImage: {
ellipse: "url('/ellipse2.png')",
"ellipse-2": "url('/ellipse3.png')",
contact: "url('/contact.gif')",
},
screens: {
nv: "890px",
ft: "840px",
},
// landing page colors
colors: {
primary: "#ff9a55",
secondary: "#FFA478",
tertiary: "#FFB09C",
"tertiary-2": "#FFBFC0",
"main-orange": "#FF9A55",
"light-orange": "#FFA478",
beige: "#FFB09C",
"light-pink": "#FFBFC0",
white: "#ffffff",
black: "#000000",
},
fontSize: {
"lg-main": "34px",
"lg-sub": "24px",
"lg-body": "16px",
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
serif: ["Notable", "serif"],
montez: ["Montez", "monospace"],
},
},
},
plugins: [],
};