From 3a90d69f4ae2147deeeda94a06454b98427b0861 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 25 Apr 2025 12:29:12 -0400 Subject: [PATCH] fix: topic colors --- scripts/common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/common.js b/scripts/common.js index f6e0652..5748543 100644 --- a/scripts/common.js +++ b/scripts/common.js @@ -121,9 +121,9 @@ const getTopicColor = (topicName) => { case "operating-systems": return "#009975"; case "algorithms": - return "#6a0dad"; - default: return "#d50032"; + default: + return "#000000"; } };