-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (37 loc) · 794 Bytes
/
tailwind.config.ts
File metadata and controls
39 lines (37 loc) · 794 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
39
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./lib/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.5rem',
lg: '2rem',
xl: '2.5rem'
},
screens: {
'2xl': '1200px'
}
},
extend: {
colors: {
background: '#070707',
foreground: '#f4f4f5',
muted: '#a1a1aa',
border: '#27272a',
card: '#111114',
accent: '#fafafa'
},
boxShadow: {
soft: '0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 40px rgba(0, 0, 0, 0.35)'
}
}
},
plugins: []
};
export default config;