-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 910 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
34
35
36
37
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
behind: "url(./assets/navbar/background.png)",
banner: "url(./assets/banner/banner.png)",
},
colors: {
primary: "#002bb7",
heading: "#000c35",
subHeading: "#7d859f",
borderColor: "#926bfa",
},
fontFamily: {
primary: ["Poppins", "sans-serif"],
secondary: ["Rubik", "sans-serif"],
},
borderRadius: {
5: "50px",
},
screens: {
secondPortriait: "412px",
Landscape2: "668px",
Landscape3: "730px",
},
dropShadow: {
custom: "1px 10px 63px -10px rgba(63,106,255,0.71)",
},
spacing: {
17: "120px",
},
},
},
plugins: ["prettier-plugin-tailwindcss"],
};