barrettruth.com/src/utils/colors.js
2025-12-27 16:19:55 -06:00

18 lines
402 B
JavaScript

export function getTopicColor(topicName) {
switch ((topicName || "").toLowerCase()) {
case "software":
return "#0073e6";
case "algorithms":
return "#d50032";
case "meditations":
return "#6a0dad";
case "autonomous-racing":
return "#3d8a44";
case "git":
return "#cc5500";
case "death":
return "#000000";
default:
return null;
}
}