forked from codeit-fe2-2/taskify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
46 lines (45 loc) · 1015 Bytes
/
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
screens: {
sm: { max: '759px' },
md: { min: '760px', max: '1199px' },
lg: { min: '1200px' },
},
colors: {
white: '#FFFFFF',
gray1: '#FAFAFA',
gray2: '#EEEEEE',
gray3: '#D9D9D9',
gray4: '#9FA6B2',
gray5: '#787486',
black1: '#4B4B4B',
black2: '#333236',
black3: '#171717',
black4: '#000000',
violet1: '#F1EFFD',
violet2: '#5534DA',
red: '#D6173A',
green: '#7AC555',
purple: '#760DDE',
orange: '#FFA500',
blue: '#76A5EA',
pink: '#E876EA',
sortTextBgGreen: '#E7F7DB',
sortTextBgPink: '#F7DBF0',
sortTextBgBlue: '#DBE6F7',
sortTextBgOrange: '#F9EEE3',
sortTextGreen: '#86D549',
sortTextPink: '#D549B6',
sortTextBlue: '#4981D5',
sortTextOrange: '#D58D49',
},
},
plugins: [require('tailwind-scrollbar-hide')],
};
export default config;