36 lines
923 B
TypeScript
36 lines
923 B
TypeScript
const colors = {
|
|
"orange": "#FCAE00",
|
|
"blue-button": "#0A4E78",
|
|
"blue-button-1": "#E5F2FA",
|
|
"blue-button-2": "#B8DAEF",
|
|
"blue-button-3": "#8AC1E3",
|
|
"blue-button-4": "#5DA9D8",
|
|
"blue-button-5": "#2F91CC",
|
|
"blue-button-6": "#083F61",
|
|
"blue-button-7": "#062F49",
|
|
"blue-button-8": "#041F32",
|
|
"blue-button-trans": "#628EC6",
|
|
"white-1": "#FBFBFC",
|
|
"white-trans-1": "rgba(255, 255, 255, 0.5)",
|
|
"white-trans-2": "rgba(255, 255, 255, 0.7)",
|
|
"white-trans-3": "rgba(255, 255, 255, 0.9)",
|
|
"trans": {
|
|
"dark": {
|
|
"1": "rgba(0, 0, 0, 0.3)",
|
|
"2": "rgba(0, 0, 0, 0.5)",
|
|
"3": "rgba(0, 0, 0, 0.7)",
|
|
"4": "rgba(0, 0, 0, 0.9)"
|
|
}
|
|
},
|
|
"grey": {
|
|
"1": "#F4F5F6",
|
|
"2": "#CBCACD"
|
|
},
|
|
"Bg": "#D1d9e8",
|
|
"BG-trans": "#B1C5F2",
|
|
|
|
}
|
|
|
|
export default colors
|
|
export type ColorsType = typeof colors
|