-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
68 lines (67 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
zIndex: {
'100': '100',
},
colors: {
white: '#ffffff',
brown: '#794F34',
sand: '#D8AB83',
red: '#E9431D',
error: '#F24F29',
yellowBeige: '#FBEBCB',
lightBeige: '#FCF4E4',
beige: '#F4EDE8',
lightGrey: '#DFDFDF',
grey: '#818080',
grey50: '#FBFAF8',
grey100: '#F2F1ED',
grey150: '#E7E6E1',
grey200: '#D6D5D4',
grey300: '#B9B8B7',
grey400: '#A2A1A0',
grey500: '#818080',
grey600: '#6A6969',
grey700: '#565655',
grey800: '#3A3A39',
grey900: '#242320',
deepGreen: '#6D9167',
deepYellow: '#F8D394',
deepOrange: '#EC7357',
},
fontColor: {
primaryBlack: '#242320',
},
backgroundImage: {
'check-icon': "url('/icon/ic-check_20px.svg')",
'grey-check-off-icon': "url('/icon/check/ic_check_grey_off.svg')",
'grey-check-on-icon': "url('/icon/check/ic_check_grey_on.svg')",
'todo-check-icon': "url('/icon/ic_todo_check.svg')",
'checked-icon': "url('/icon/icon_checked.svg')",
'goTo-icon': "url('/icon/ic-arrow-right-20px.svg')",
'shape-icon': "url('/status/icon_shape.svg')",
'dry-icon': "url('/status/icon_dry.svg')",
'carve-icon': "url('/status/icon_carve.svg')",
'glaze-icon': "url('/status/icon_glaze.svg')",
'bisqueFire-icon': "url('/status/icon_bisqueFire.svg')",
'refire-icon': "url('/status/icon_refire.svg')",
'chevron-down-icon': "url('/icon/icon_chevron_down.svg')",
'tab-home-icon': "url('/icon/bottombar/home_normal_24px')",
'tab-member-icon': "url('/icon/bottombar/member_normal_24px.svg')",
'tab-calendar-icon': "url('/icon/bottombar/calendar_normal_24px.svg')",
'tab-gallery-icon': "url('/icon/bottombar/gallery_normal_24px.svg')",
'tab-my-icon': "url('/icon/bottombar/mypage_normal_24px.svg')",
'search-icon': "url('/icon/ic-search-18px.svg')",
},
},
},
plugins: [],
};
export default config;