이승윤

style: Dropdown과 Button color 추가

...@@ -40,6 +40,16 @@ export const buttonColorMap = { ...@@ -40,6 +40,16 @@ export const buttonColorMap = {
40 color: 'white', 40 color: 'white',
41 hoverBackground: palette.blue5, 41 hoverBackground: palette.blue5,
42 }, 42 },
43 + gray: {
44 + background: palette.gray2,
45 + color: 'black',
46 + hoverBackground: palette.gray5,
47 + },
48 + white: {
49 + background: 'white',
50 + color: 'black',
51 + hoverBackground: palette.gray2,
52 + },
43 }; 53 };
44 54
45 export const inputColorMap = { 55 export const inputColorMap = {
...@@ -65,6 +75,11 @@ export const dropdownHeaderColorMap = { ...@@ -65,6 +75,11 @@ export const dropdownHeaderColorMap = {
65 hoverBackground: palette.blue5, 75 hoverBackground: palette.blue5,
66 borderColor: palette.blue8, 76 borderColor: palette.blue8,
67 }, 77 },
78 + white: {
79 + background: 'white',
80 + color: 'black',
81 + hoverBackground: palette.gray2,
82 + },
68 }; 83 };
69 84
70 export const searchBoxColorMap = { 85 export const searchBoxColorMap = {
......