forked from amaan-bhati/contact-mlsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: ["class"],
theme: {
extend: {
colors: {
primary: "#6178F1",
youtube: "#FF0000",
twitter: "#1DA1F2",
discord: "#5865F2",
github: "#181717",
},
fontFamily: {
sans: ["var(--font-sfpro)"],
},
backgroundImage: {
"light-pattern": "url('/light-pattern.svg')",
"dark-pattern": "url('/dark-pattern.svg')",
'orange-gradient': 'linear-gradient(90deg, #FFA726, #FB8C00, #EF6C00)',
},
backgroundSize: {
auto: "auto",
cover: "cover",
contain: "contain",
verySmall: "0.5rem",
3: "3rem",
2: "2rem",
1: "1rem",
},
boxShadow: {
grid: "0px 4px 10px 0px rgba(0, 0, 0, 0.49);",
},
},
},
plugins: [require("@tailwindcss/container-queries")],
};