16 lines
342 B
TypeScript
16 lines
342 B
TypeScript
// Define the color scheme for crime rates
|
|
export const CRIME_COLORS = {
|
|
low: "#4ade80", // green
|
|
medium: "#facc15", // yellow
|
|
high: "#ef4444", // red
|
|
no_data: "#94a3b8", // slate
|
|
}
|
|
|
|
// Define the crime rate labels
|
|
export const CRIME_RATES = {
|
|
low: "Low",
|
|
medium: "Medium",
|
|
high: "High",
|
|
no_data: "No Data",
|
|
}
|