generated from DuckyMomo20012/nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
executable file
·55 lines (54 loc) · 1.27 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
48
49
50
51
52
53
54
55
import twContainerQueries from '@tailwindcss/container-queries';
import type { Config } from 'tailwindcss';
export default {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: ['class', '[data-mantine-color-scheme="dark"]'],
theme: {
extend: {
colors: {
dark: {
'50': '#f8fafc',
'100': '#f1f5f9',
'200': '#e2e8f0',
'300': '#cbd5e1',
'400': '#94a3b8',
'500': '#64748b',
'600': '#475569',
'700': '#334155',
'800': '#1e293b',
'900': '#0f172a',
'950': '#020617',
},
grape: {
'50': '#fdf4ff',
'100': '#fae8ff',
'200': '#f5d0fe',
'300': '#f0abfc',
'400': '#e879f9',
'500': '#d946ef',
'600': '#c026d3',
'700': '#a21caf',
'800': '#86198f',
'900': '#701a75',
'950': '#4a044e',
},
},
},
screens: {
xs: '30em',
sm: '40em',
md: '48em',
lg: '64em',
xl: '80em',
'2xl': '96em',
},
},
corePlugins: {
preflight: false,
},
plugins: [twContainerQueries],
} satisfies Config;