summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-12-03 10:44:02 +0100
committerJan Holesovsky <kendy@collabora.com>2014-12-03 11:49:20 +0100
commit299dd20955e915c947164a1a7fa0f36af0cc0f8d (patch)
tree9f76c745f92e52d14f871e53fbcdf2384d0cef73
parentb9d2c5ea2192472c3c1a139eeb83b7523795ea8b (diff)
Make the default (non-native) workspace lighter, especially on Windows.
Change-Id: Ie1cc5817a5b75f129791da450105ffee07438900
-rw-r--r--vcl/source/app/settings.cxx2
-rw-r--r--vcl/win/source/gdi/salnativewidgets-luna.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index 8048875ca68f..648f03082e3a 100644
--- a/vcl/source/app/settings.cxx
+++ b/vcl/source/app/settings.cxx
@@ -715,7 +715,7 @@ void ImplStyleData::SetStandardStyles()
maWindowTextColor = Color( COL_BLACK );
maDialogColor = Color( COL_LIGHTGRAY );
maDialogTextColor = Color( COL_BLACK );
- maWorkspaceColor = Color( 0xCF, 0xCF, 0xCF );
+ maWorkspaceColor = Color( 0xF0, 0xF0, 0xF0 );
maMonoColor = Color( COL_BLACK );
maFieldColor = Color( COL_WHITE );
maFieldTextColor = Color( COL_BLACK );
diff --git a/vcl/win/source/gdi/salnativewidgets-luna.cxx b/vcl/win/source/gdi/salnativewidgets-luna.cxx
index 539af04a9870..401e0678d8d3 100644
--- a/vcl/win/source/gdi/salnativewidgets-luna.cxx
+++ b/vcl/win/source/gdi/salnativewidgets-luna.cxx
@@ -474,7 +474,7 @@ static void impl_drawAeroToolbar( HDC hDC, RECT rc, bool bHorizontal )
GradientFill( hDC, vert, 2, g_rect, 1, GRADIENT_FILL_RECT_V );
// and a darker horizontal line under that
- HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xa0, 0xa0, 0xa0 ) );
+ HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xb0, 0xb0, 0xb0 ) );
SelectObject( hDC, hpen );
MoveToEx( hDC, rc.left, gradient_bottom, NULL );
@@ -499,7 +499,7 @@ static void impl_drawAeroToolbar( HDC hDC, RECT rc, bool bHorizontal )
to_x = rc.right;
from_y = to_y = rc.top;
- HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xa0, 0xa0, 0xa0 ) );
+ HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xb0, 0xb0, 0xb0 ) );
SelectObject( hDC, hpen );
MoveToEx( hDC, from_x, from_y, NULL );