-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (36 loc) · 1.01 KB
/
Copy pathtailwind.config.ts
File metadata and controls
38 lines (36 loc) · 1.01 KB
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 = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
// Add to your globals.css:
// @import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&family=Geist:wght@400;500&display=swap');
sans: ["Geist", "sans-serif"],
mono: ["DM Mono", "monospace"],
serif: ["Instrument Serif", "serif"],
geist: ["Geist", "sans-serif"],
},
colors: {
fb: {
bg: "#0d0e11",
surface: "#13151a",
"surface-hover": "#1a1d24",
border: "#23262f",
"border-strong": "#2e3140",
text: "#e8eaf0",
muted: "#7c8296",
faint: "#454959",
amber: "#e8a838",
"amber-dim": "#1f1a0e",
},
},
},
},
plugins: [],
};
export default config;