issue #60
All checks were successful
Test CI / build (push) Successful in 18s

- 날짜 선택 및 해당 날짜 일정 조회 화면 구현 중
This commit is contained in:
geonhee-min
2025-12-05 17:10:58 +09:00
parent 0c8e0893c7
commit 4a8e761b3d
8 changed files with 456 additions and 87 deletions

80
src/const/ColorPalette.ts Normal file
View File

@@ -0,0 +1,80 @@
export type ColorPaletteType = {
style: string;
main: boolean;
}
export const ColorPalette: Record<any, ColorPaletteType> = {
Black: {
style: '#000000',
main: true
},
White: {
style: '#FFFFFF',
main: true
},
PeachCream: {
style: '#FFDAB9',
main: false
},
CoralPink: {
style: '#F08080',
main: true
},
MintIcing: {
style: '#C1E1C1',
main: false
},
Vanilla: {
style: '#FFFACD',
main: true
},
Wheat: {
style: '#F5DEB3',
main: false
},
AliceBlue: {
style: '#F0F8FF',
main: true
},
Lavender: {
style: '#E6E6FA',
main: false
},
LightAqua: {
style: '#A8E6CF',
main: true
},
CloudWhite: {
style: '#F0F8FF',
main: false
},
LightGray: {
style: '#D3D3D3',
main: true
},
LightKhakki: {
style: '#F0F8E6',
main: false
},
DustyRose: {
style: '#D8BFD8',
main: false
},
CreamBeige: {
style: '#FAF0E6',
main: true,
},
Oatmeal: {
style: '#FDF5E6',
main: false
},
CharcoalLight: {
style: '#A9A9A9',
main: true
},
custom: {
style: 'transprent',
main: true
},
}