feat: fix default color

This commit is contained in:
Barrett Ruth 2025-04-15 14:35:49 -04:00
parent 83e5c6c61a
commit c3e74da95b

View file

@ -123,7 +123,7 @@ const getTopicColor = (topicName) => {
case "algorithms":
return "#6a0dad";
default:
return "#000000";
return "#d50032";
}
};