fix: topic colors

This commit is contained in:
Barrett Ruth 2025-04-25 12:29:12 -04:00
parent 817985e42a
commit 3a90d69f4a

View file

@ -121,9 +121,9 @@ const getTopicColor = (topicName) => {
case "operating-systems":
return "#009975";
case "algorithms":
return "#6a0dad";
default:
return "#d50032";
default:
return "#000000";
}
};