forked from Cola-Pig1121/IFDesignLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (34 loc) · 796 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (34 loc) · 796 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'
const config: Config = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
container: { center: true, padding: '1rem' },
extend: {
colors: {
ink: '#111111',
muted: '#5A6A7A',
brand: {
50: '#F3F8FF',
100: '#E6F0FD',
200: '#CFE2FB',
400: '#6FA9F2',
500: '#3D7FE6',
600: '#2E66C0',
700: '#214D98',
900: '#0E2A53',
},
},
fontFamily: {
sans: ['var(--font-inter)', 'var(--font-noto)', 'system-ui', 'sans-serif'],
},
boxShadow: {
soft: '0 10px 30px rgba(15, 29, 68, .08)',
},
},
},
plugins: [],
}
export default config