-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
44 lines (42 loc) · 1.13 KB
/
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
38
39
40
41
42
43
44
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'media',
theme: {
extend: {
backgroundImage: {
hero: "url('../asset/Images/mobilebg.png')",
aboutBg: "url('../components/About/Images/background.jpg')",
aboutBg1: "url('../components/About/Images/background1.png')",
bgEdu: "url('../components/Podcast/Images/bgEdu.png')",
podcast1: "url('../components/Podcast/Images/bapodcast.jpg')",
podcast2: "url('../components/Podcast/Images/pidgin-parlor.jpg')",
podcast3: "url('../components/Podcast/Images/sats-and-gwei.jpg')",
},
backgroundSize: {
"100%":"100%"
},
fontFamily: {
sans: ["Clear Sans", ...defaultTheme.fontFamily.sans],
},
screens: {
b1: "500px",
b2: "500px",
b3: "860px"
},
height: {
small: "640px"
},
colors: {
darkBlack: "#171717"
}
},
},
plugins: [],
"tailwindCSS.includeLanguages": {
plaintext: "html",
},
};