barrettruth.com/src/utils/colors.js
2025-05-22 16:12:05 -05:00

12 lines
249 B
JavaScript

export function getTopicColor(topicName) {
switch (topicName) {
case "software":
return "#0073e6";
case "algorithms":
return "#d50032";
case "meditations":
return "#6a0dad";
default:
return "#000000";
}
}