-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (40 loc) · 969 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
38
39
40
/** @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')",
},
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.05);",
},
},
},
plugins: [require("@tailwindcss/container-queries")],
};