const Blue = {
dark: '#1e5281',
semiDark: '#2870b2',
normal: '#6197c6',
semiLight: '#afcef3',
light: '#e7f0f7'
}
const Green = {
dark: '#557c23',
semiDark: '#6f9e32',
normal: '#8cc152',
semiLight: '#afd485',
light: '#dcecc9'
}
const Yellow = {
dark: '#b98b1f',
semiDark: '#ffc107',
normal: '#fed057',
semiLight: '#fee194',
light: '#fff2d2'
}
const Red = {
dark: '#b63f43',
semiDark: '#f9575b',
normal: '#fb8486',
semiLight: '#fbb0b3',
light: '#fcdfdf'
}
const Gray = {
dark: '#496072',
semiDark: '#95a3b7',
normal: '#c5d0e1',
semiLight: '#e5edf4',
light: '#f4f5f8'
}
const Black = {
dark: '#2c3848',
semiDark: '#314056',
normal: '#3b495e',
semiLight: '#4f5c6f',
light: '#646f80'
}
export default { Blue, Green, Yellow, Red, Gray, Black }
export { Blue, Green, Yellow, Red, Gray, Black }
|