forked from TravelLaboratory/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
77 lines (76 loc) · 1.82 KB
/
tailwind.config.ts
File metadata and controls
77 lines (76 loc) · 1.82 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
/* eslint-disable global-require */
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
extend: {
backgroundSize: {
'80%': '80%'
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'second-logo': "url('/icons/second-logo.svg')"
},
boxShadow: {
modal: '0 0 0.625rem 0 rgba(0, 0, 0, 0.10)',
button: '0 0 0.5rem 0 rgba(0, 0, 0, 0.08)',
card: '0 0 0.625rem rgba(0, 0, 0, 0.08)'
},
colors: {
black: {
DEFAULT: '#000000',
'01': '#2D3136',
'02': '#3C4352',
'03': '#697586'
},
gray: {
'01': '#A0AAB8',
'02': '#DDE2E9',
'03': '#F5F7FA'
},
white: {
'01': '#FFFFFF'
},
red: {
'01': '#ED1C24'
},
primary: {
'01': '#4F80FF',
'02': '#DEEBFF',
'03': '#F7F9FD'
},
secondary: {
'01': '#F5BA07',
'02': '#FFF6DC'
},
point: '#FF6060',
block: {
pink: {
'01': '#FB2F85',
'02': '#FFEFF4'
},
green: {
'01': '#55B135',
'02': '#F1FBED'
},
purple: {
'01': '#9747FF',
'02': '#F4ECFF'
},
orange: {
'01': '#F35802',
'02': '#FFF0EA'
}
},
kakao: '#FEE500'
}
}
},
plugins: [require('tailwind-scrollbar-hide')]
};
export default config;