diff options
author | Jan Holesovsky <kendy@collabora.com> | 2014-12-03 10:44:02 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-12-03 11:52:21 +0100 |
commit | dacbe43846a729ef9f46138321c1facb5151c17d (patch) | |
tree | 031129740858c4d3512e05b4f135dbafdf0442dd /vcl | |
parent | f8533123802c5a709280dd06b4452d00a11c71b1 (diff) |
Make the default (non-native) workspace lighter, especially on Windows.
Change-Id: Ie1cc5817a5b75f129791da450105ffee07438900
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/settings.cxx | 2 | ||||
-rw-r--r-- | vcl/win/source/gdi/salnativewidgets-luna.cxx | 4 |
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 ); |