forked from tedxgecrit/tedxgecrit23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
32 lines (32 loc) · 902 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
tedRed: "#EB0028",
red: "#DA0400",
redText: "#FA0400",
deepGrey: "#1B1B1B",
grey: "#585858",
},
backgroundImage: {
ayush: "url('/team/ayush_krishna.webp')",
sabareesh: "url('/team/sabareesh_narayanan.webp')",
coming_soon: "url('/backgrounds/coming-soon.webp')",
swirls: "url('/backgrounds/website_banner.webp')",
swirls_home: "url('/backgrounds/website_banner.webp')",
tm: "url('/assets/tm.png')",
td: "url('/assets/td.png')",
},
backgroundPosition: {
custom: "center top 25%",
},
},
},
plugins: [],
};