-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
33 lines (33 loc) · 933 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./lib/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"almost-black": "#161616",
greyish: "#b3b3b3",
"almost-white": "#f2f2f2",
},
fontFamily: {
sans: ["var(--font-inter)"],
},
backgroundImage: {
noise: "url('/noise.png')",
},
},
fontFamily: {
"fira-code": ["var(--font-fira-code)"],
"jetbrains-mono": ["var(--font-jetbrains-mono)"],
inconsolata: ["var(--font-inconsolata)"],
"source-code-pro": ["var(--font-source-code-pro)"],
"ibm-plex-mono": ["var(--font-ibm-plex-mono)"],
"kode-mono": ["var(--font-kode-mono)"],
},
},
plugins: [require("tailwindcss-animate"), require("tailwindcss-radix")],
};