forked from ProgressoShot/taskify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
92 lines (89 loc) · 2.25 KB
/
tailwind.config.ts
File metadata and controls
92 lines (89 loc) · 2.25 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import type { Config } from 'tailwindcss'
const config: Config = {
safelist: [
'bg-custom-tag-orange-100',
'bg-custom-tag-green-100',
'bg-custom-tag-pink-100',
'bg-custom-tag-blue-100',
'text-custom-tag-orange-200',
'text-custom-tag-green-200',
'text-custom-tag-pink-200',
'text-custom-tag-blue-200',
],
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
// `src` directory를 사용한다면
// './src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
keyframes: {
blink: {
'0%, 100%': { backgroud: 'transparent' },
'50%': { background: 'black' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
custom: {
violet: '#5534DA',
red: '#D6173A',
green: '#7AC555',
purple: '#760DDE',
orange: '#FFA500',
blue: '#76A5EA',
pink: '#E876EA',
light: {
violet: '#F1EFFD',
},
black: {
100: '#4B4B4B',
200: '#333236',
300: '#171717',
},
gray: {
100: '#FAFAFA',
200: '#EEEEEE',
300: '#D9D9D9',
400: '#9FA6B2',
500: '#787486',
},
tag: {
orange: {
100: '#F9EEE3',
200: '#D58D49',
},
green: {
100: '#E7F7DB',
200: '#86D549',
},
pink: {
100: '#F7DBF0',
200: '#D549B6',
},
blue: {
100: '#DBE6F7',
200: '#4981D5',
},
},
},
},
fontFamily: {
montserrat: ['Montserrat', 'sans-serif'],
},
gridTemplateColumns: {
card: 'minmax(420px, 1fr) minmax(180px, 200px)',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
darkMode: 'class',
}
export default config