Skip to content

Commit

Permalink
Update esettings.cpp
Browse files Browse the repository at this point in the history
Better default colors for range clips
  • Loading branch information
rodlie committed Dec 19, 2023
1 parent c6ec76d commit 54c64f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Private/esettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,15 +272,15 @@ eSettings::eSettings(const int cpuThreads,
gSettings << std::make_shared<eColorSetting>(
fVisibilityRangeColor,
"visibilityRangeColor",
QColor(0, 0, 255, 120));
QColor(131, 92, 255, 255));
gSettings << std::make_shared<eColorSetting>(
fSelectedVisibilityRangeColor,
"selectedVisibilityRangeColor",
QColor(255, 0, 255, 120));
QColor(116, 18, 98, 255));
gSettings << std::make_shared<eColorSetting>(
fAnimationRangeColor,
"animationRangeColor",
QColor(255, 255, 255, 180));
QColor(0, 0, 0, 55));

loadDefaults();

Expand Down

0 comments on commit 54c64f5

Please sign in to comment.