-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
57 lines (56 loc) · 1.25 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
56
57
import type { Config } from 'tailwindcss';
// import {red, black} from "next/dist/lib/picocolors";
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
gridTemplateColumns: {
'13': 'repeat(13, minmax(0, 1fr))',
},
colors: {
blue: {
400: '#2589FE',
500: '#0070F3',
600: '#2F6FEB',
},
red: {
50: '#ffe5e5',
100: '#fbbaba',
200: '#f28e8e',
300: '#FFD6D6',
400: '#FF1A1A',
500: '#FF0000',
600: '#E60000',
700: '#8b0606',
800: '#650404',
900: '#400202',
},
black: {
50: '#f7f7f7',
100: '#e1e1e1',
200: '#cfcfcf',
300: '#b1b1b1',
400: '#9e9e9e',
500: '#7e7e7e',
600: '#626262',
700: '#515151',
800: '#3b3b3b',
900: '#222222',
},
},
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};
export default config;