-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
38 lines (36 loc) · 1.06 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
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: {
light: "#F5F5F5",
red: "#B71C1C",
gray: "#303030",
dark: "#151515",
},
fontFamily: {
apex: ["Apex Regular", "var(--font-oswald)"],
oswald: ["var(--font-oswald)"],
montserrat: ["var(--font-montserrat)"],
},
backgroundImage: {
"custom-gradient":
"linear-gradient(to right, #f5f5f5 0%,#a4a4a4 50%, #f5f5f5 100%)",
"dark-custom-gradient":
"linear-gradient(to right, #151515 0%, #282828 50%, #151515 100%)",
"custom-gradient-reverse":
"linear-gradient(to bottom right, #282828 0%, #101010 100%)",
"custom-gradient-btn":
"linear-gradient(to right, #282828 0%, #4d0000 50%, #282828 100%)",
},
},
},
plugins: [],
};
export default config;