-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
35 lines (35 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./**/*.{html,js}", // Include all HTML and JS files in the current folder and subfolders
"!./node_modules", // Exclude the node_modules folder
"!./**/node_modules", // Exclude any node_modules folder in subdirectories (if applicable)
],
theme: {
extend: {
fontFamily: {
bahnschrift: ["Bahnschrift", "sans-serif"],
},
backgroundImage: {
"hero-pattern":
"url('https://raw.githubusercontent.com/noskofficial/sfd-resources/refs/heads/sfd-2024/nosk-sfd-2024/assets/timer/timer_bg.svg')",
"project-bg":
"url('https://raw.githubusercontent.com/noskofficial/sfd-resources/refs/heads/sfd-2024/nosk-sfd-2024/assets/projectReg/project_bg.svg')",
"celeb-banner":
"url('https://raw.githubusercontent.com/noskofficial/sfd-resources/refs/heads/sfd-2024/nosk-sfd-2024/assets/celebrationbg/celeb_banner.svg')",
},
padding: {
"20px": "20px",
},
fontSize: {
big: "64px",
mid1: "52px",
sml: "30px",
big2: "44px",
mid2: "35px",
sml2: "25px",
},
},
},
plugins: [],
};