diff --git a/data/skins/default/skin.xml b/data/skins/default/skin.xml
index 2eb8127b6..302aa0031 100644
--- a/data/skins/default/skin.xml
+++ b/data/skins/default/skin.xml
@@ -8,7 +8,8 @@
-
+
+
@@ -56,11 +57,11 @@
-
+
-
+
diff --git a/src/app/ui/skin/skin_theme.cpp b/src/app/ui/skin/skin_theme.cpp
index d73d18c8b..170d6411d 100644
--- a/src/app/ui/skin/skin_theme.cpp
+++ b/src/app/ui/skin/skin_theme.cpp
@@ -61,6 +61,7 @@ static std::map color_mapping;
const char* SkinTheme::kThemeCloseButtonId = "theme_close_button";
const char* kWindowFaceColorId = "window_face";
+const char* kSeparatorLabelColorId = "separator_label";
// Controls the "X" button in a window to close it.
class WindowCloseButton : public Button {
@@ -1382,7 +1383,7 @@ void SkinTheme::paintSeparator(ui::PaintEvent& ev)
bounds.y2() - widget->border_width.b/2 + h));
drawTextString(g, NULL,
- getColor(ThemeColor::Selected), BGCOLOR, false,
+ getColorById(kSeparatorLabelColorId), BGCOLOR, false,
widget, r, 0);
}
}