From 40b80d1be953c450f8a785e576f48aa99be31d0f Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 19 Nov 2021 14:56:31 -0500 Subject: [PATCH] Tweak default cable colors. --- src/settings.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/settings.cpp b/src/settings.cpp index cf818076..efd1cd1c 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -49,12 +49,11 @@ float autosaveInterval = 15.0; bool skipLoadOnLaunch = false; std::list recentPatchPaths; std::vector cableColors = { - color::fromHexString("#fc2d5aff"), // red - color::fromHexString("#f9b130ff"), // orange - // color::fromHexString("#f7da31ff"), // yellow - color::fromHexString("#67c12dff"), // green - color::fromHexString("#0f8df4ff"), // blue - color::fromHexString("#8c1889ff"), // purple + color::fromHexString("#f3374b"), // red + color::fromHexString("#ffb437"), // yellow + color::fromHexString("#00b56e"), // green + color::fromHexString("#3695ef"), // blue + color::fromHexString("#8b4ade"), // purple }; bool autoCheckUpdates = true; bool showTipsOnLaunch = true;