Browse Source

Tweak default cable colors.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
40b80d1be9
1 changed files with 5 additions and 6 deletions
  1. +5
    -6
      src/settings.cpp

+ 5
- 6
src/settings.cpp View File

@@ -49,12 +49,11 @@ float autosaveInterval = 15.0;
bool skipLoadOnLaunch = false;
std::list<std::string> recentPatchPaths;
std::vector<NVGcolor> 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;


Loading…
Cancel
Save