-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (36 loc) · 975 Bytes
/
tailwind.config.ts
File metadata and controls
38 lines (36 loc) · 975 Bytes
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"
export const APP_COLORS = {
background: "#0f172a", // Slate 900
background_highlight: "#1e293b", // Slate 800
font_main: "#94a3b8", // Slate 400
font_light: "#cbd5e1", // Slate 300
font_dark: "#475569", // Slate 600
font_highlight: "#2dd4bf", // Teal 400
font_header: "#f1f5f9", // Slate 100
logo: "#020617", // Slate 950
}
const config: Config = {
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: {
...APP_COLORS,
},
borderColor: {
...APP_COLORS,
},
fontFamily: {
"code": ["Source Code Pro", "mono space"],
"interface": ["Inter", "sans-serif"],
"console-bold": ["Inconsolata-Bold", "sans-serif"],
"console": ["Inconsolata", "sans-serif"],
},
},
},
plugins: [],
}
export default config