All checks were successful
Test CI / build (push) Successful in 17s
- 일정 등록 및 조회 컴포넌트 설계 및 구현 중
99 lines
1.4 KiB
TypeScript
99 lines
1.4 KiB
TypeScript
export type ColorPaletteType = {
|
|
index: number;
|
|
style: string;
|
|
main: boolean;
|
|
}
|
|
|
|
|
|
export const ColorPalette: Record<any, ColorPaletteType> = {
|
|
Black: {
|
|
index: 0,
|
|
style: '#000000',
|
|
main: true
|
|
},
|
|
White: {
|
|
index: 1,
|
|
style: '#FFFFFF',
|
|
main: true
|
|
},
|
|
PeachCream: {
|
|
index: 2,
|
|
style: '#FFDAB9',
|
|
main: false
|
|
},
|
|
CoralPink: {
|
|
index: 3,
|
|
style: '#F08080',
|
|
main: true
|
|
},
|
|
MintIcing: {
|
|
index: 4,
|
|
style: '#C1E1C1',
|
|
main: false
|
|
},
|
|
Vanilla: {
|
|
index: 5,
|
|
style: '#FFFACD',
|
|
main: true
|
|
},
|
|
Wheat: {
|
|
index: 6,
|
|
style: '#F5DEB3',
|
|
main: false
|
|
},
|
|
AliceBlue: {
|
|
index: 7,
|
|
style: '#F0F8FF',
|
|
main: true
|
|
},
|
|
Lavender: {
|
|
index: 8,
|
|
style: '#E6E6FA',
|
|
main: false
|
|
},
|
|
LightAqua: {
|
|
index: 9,
|
|
style: '#A8E6CF',
|
|
main: true
|
|
},
|
|
CloudWhite: {
|
|
index: 10,
|
|
style: '#F0F8FF',
|
|
main: false
|
|
},
|
|
LightGray: {
|
|
index: 11,
|
|
style: '#D3D3D3',
|
|
main: true
|
|
},
|
|
LightKhakki: {
|
|
index: 12,
|
|
style: '#F0F8E6',
|
|
main: false
|
|
},
|
|
DustyRose: {
|
|
index: 13,
|
|
style: '#D8BFD8',
|
|
main: true
|
|
},
|
|
CreamBeige: {
|
|
index: 14,
|
|
style: '#FAF0E6',
|
|
main: true,
|
|
},
|
|
Oatmeal: {
|
|
index: 15,
|
|
style: '#FDF5E6',
|
|
main: false
|
|
},
|
|
CharcoalLight: {
|
|
index: 16,
|
|
style: '#A9A9A9',
|
|
main: true
|
|
},
|
|
Custom: {
|
|
index: 17,
|
|
style: 'transparent',
|
|
main: false
|
|
},
|
|
} |