-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
36 lines (33 loc) · 915 Bytes
/
tailwind.config.ts
File metadata and controls
36 lines (33 loc) · 915 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
// Copyright (c) 2025 Benjamin F. Hall
// SPDX-License-Identifier: MIT
import type { Config } from 'tailwindcss';
import typography from '@tailwindcss/typography';
const config: Config = {
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}', './src/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', '"Helvetica Neue"', 'ui-sans-serif', 'system-ui', 'sans-serif']
},
colors: {
primary: '#1a73e8',
rail: '#eef3ff',
surface: '#ffffff',
text: '#1f2937',
muted: '#6b7280',
divider: '#e5e7eb'
},
borderRadius: {
md: '12px',
lg: '16px',
xl: '18px'
},
boxShadow: {
card: '0 10px 30px rgba(15,23,42,0.08)',
composer: '0 16px 40px rgba(15,23,42,0.12)'
}
}
},
plugins: [typography]
};
export default config;