forked from 12-Pair-Programming/Dang-il
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
59 lines (52 loc) · 1.41 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
58
59
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./features/**/*.{js,ts,jsx,tsx,mdx}',
'./shared/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
screens: {
mobile: { max: '767px' },
tablet: { min: '768px', max: '1023px' },
},
zIndex: {
dropdown: '10',
modalbackground: '20',
modalbody: '30',
},
colors: {
primary: '#9935ff',
'purple-10': '#f8f0ff',
'purple-20': '#dcb9ff',
'purple-30': '#9935ff',
'purple-40': '#6e0ad1',
'red-10': '#FFEBE7',
'red-20': '#FFAF9B',
'red-30': '#FF8D72',
'red-40': '#FF4040',
'blue-10': '#cce6ff',
'blue-20': '#0080ff',
'green-10': '#d4f7d4',
'green-20': '#20a81e',
'gray-05': '#fafafa',
'gray-10': '#f2f2f3',
'gray-20': '#e5e4e7',
'gray-30': '#cbc9cf',
'gray-40': '#a4a1aa',
'gray-50': '#7d7986',
white: '#ffffff',
black: '#111322',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(tw-gradient-stops))',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
};
export default config;