-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
54 lines (52 loc) · 1.14 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
import type { Config } from 'tailwindcss';
const flowbite = require('flowbite-react/tailwind');
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
flowbite.content(),
],
theme: {
extend: {
gridTemplateColumns: {
'13': 'repeat(13, minmax(0, 1fr))',
},
colors: {
primary: {
200: '#a7f3d0',
300: '#6ee7b7',
400: '#34d399',
500: '#10b981',
},
secondary: {
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
},
light: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#d1d5db',
},
dark: {
950: '#030712',
900: '#111827',
800: '#1f2937',
700: '#374151',
},
},
},
darkMode: 'class',
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
},
plugins: [require('@tailwindcss/forms'), flowbite.plugin()],
};
export default config;