-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
47 lines (46 loc) · 1.05 KB
/
tailwind.config.ts
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
40
41
42
43
44
45
46
47
import type { Config } from 'tailwindcss';
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: {
txt: {
DEFAULT: '#fff', // white
light: '#f5f5f5', // neutral-100
low: '#d4d4d4', // neutral-300
lower: '#a3a3a3', // neutral-400
last: '#737373', // neutral-500
},
brdr: {
active: '#525252', // neutral-600
light: '#404040', // neutral-700
DEFAULT: '#262626', // neutral-800
dark: '#171717', // neutral-900
},
},
borderRadius: {
outher: '12px',
middle: '8px',
inner: '6px',
DEFAULT: '4px',
last: '2px',
},
},
container: {
center: true,
padding: '5px',
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
},
},
plugins: [],
};
export default config;