Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-02-25 18:47:49 +0300
committerVojtech Kral <vojtech@kral.hk>2019-02-25 19:45:04 +0300
commit7067cef812f69516548620023d763738a209e047 (patch)
treec2325d937c26c7545906bd882478e3d6a44be867 /src/slic3r/GUI/ImGuiWrapper.cpp
parent0f96213dced66556951d2e05bd6eef5d56bfa54f (diff)
imgui: Take orange color radiance down a notch
Diffstat (limited to 'src/slic3r/GUI/ImGuiWrapper.cpp')
-rw-r--r--src/slic3r/GUI/ImGuiWrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/ImGuiWrapper.cpp b/src/slic3r/GUI/ImGuiWrapper.cpp
index 61baf352b..7f95b6c28 100644
--- a/src/slic3r/GUI/ImGuiWrapper.cpp
+++ b/src/slic3r/GUI/ImGuiWrapper.cpp
@@ -405,8 +405,8 @@ void ImGuiWrapper::init_style()
static const unsigned COL_GREY_DARK = 0x444444ff;
static const unsigned COL_GREY_LIGHT = 0x666666ff;
- static const unsigned COL_ORANGE_DARK = 0xba5418ff;
- static const unsigned COL_ORANGE_LIGHT = 0xff6f22ff;
+ static const unsigned COL_ORANGE_DARK = 0xc16737ff;
+ static const unsigned COL_ORANGE_LIGHT = 0xff7d38ff;
// Generics
set_color(ImGuiCol_TitleBgActive, COL_ORANGE_DARK);