-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (34 loc) · 925 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (34 loc) · 925 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
import type { Config } from "tailwindcss";
export default {
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: {
oc: {
'bg-base': '#131010',
'bg-weak': '#1c1717',
'bg-strong': '#151313',
'bg-elevated': '#252121',
'border': '#4b4646',
'border-subtle': '#252121',
'text-strong': '#f1ecec',
'text-base': '#b7b1b1',
'text-weak': '#716c6b',
'green': '#37db2e',
'red': '#ff917b',
'blue': '#89b5ff',
'brand': '#fdffca',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['IBM Plex Mono', 'SF Mono', 'Monaco', 'monospace'],
},
},
},
plugins: [],
} satisfies Config;