misc fixes

This commit is contained in:
Barrett Ruth 2025-10-09 21:15:02 -04:00
parent 6f79fc5e4f
commit 279565f2cf
3 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,6 @@
--- ---
title: "cp.nvim" title: "cp.nvim"
slug: "cp.nvim"
date: "21/09/2025" date: "21/09/2025"
--- ---

View file

@ -39,7 +39,7 @@ const {
case "autonomous-racing": case "autonomous-racing":
return "#3d8a44"; return "#3d8a44";
case "git": case "git":
return "#e67300"; return "#cc5500";
default: default:
return "#000000"; return "#000000";
} }

View file

@ -9,7 +9,7 @@ export function getTopicColor(topicName) {
case "autonomous-racing": case "autonomous-racing":
return "#3d8a44"; return "#3d8a44";
case "git": case "git":
return "#e67300"; return "#cc5500";
default: default:
return "#000000"; return "#000000";
} }