-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
45 lines (45 loc) · 1.01 KB
/
tailwind.config.mjs
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
// tailwind.config.mjs
/** @type {import('tailwindcss').Config} */
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: {
primary: '#000000',
secondary: '#FFFFFF',
gray: {
50: '#fafafa',
100: '#f4f4f5',
200: '#e4e4e7',
300: '#d4d4d8',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
700: '#3f3f46',
800: '#27272a',
900: '#18181b',
}
},
fontFamily: {
sans: ['Inter var', 'sans-serif'],
},
spacing: {
'128': '32rem',
'144': '36rem',
},
borderRadius: {
'4xl': '2rem',
},
boxShadow: {
'soft': '0 2px 15px rgba(0, 0, 0, 0.05)',
'medium': '0 4px 20px rgba(0, 0, 0, 0.1)',
'hard': '0 8px 30px rgba(0, 0, 0, 0.15)',
}
},
},
plugins: [],
}