Skip to content

Commit b95bc7b

Browse files
committed
Merge branch 'master' of https://github.com/gammasoft71/xtd
2 parents 5441091 + 016db1d commit b95bc7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/xtd.drawing.native.wxwidgets/src/xtd/drawing/native/wxwidgets/system_colors.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ intptr system_colors::button_face() {
113113
#if defined(__WXOSX__)
114114
return __xtd__macos_system_colors_button_face__();
115115
#elif defined(__WXMSW__)
116-
if (is_windows_dark_mode()) return 0xFF353535;
116+
if (is_windows_dark_mode()) return 0xFF373737;
117117
return ::to_argb(0xFFFFFFFF);
118118
#else
119119
return ::to_argb(wxSystemSettings::GetColour(wxSystemColour::wxSYS_COLOUR_BTNFACE));
@@ -134,7 +134,7 @@ intptr system_colors::button_shadow() {
134134

135135
intptr system_colors::control() {
136136
toolkit::initialize(); // Must be first
137-
if (is_windows_dark_mode()) return 0xFF191919;
137+
if (is_windows_dark_mode()) return 0xFF303030;
138138
#if defined(__WXOSX__)
139139
return __xtd__macos_system_colors_control__();
140140
#else

themes/windows_dark/system-colors.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ system-colors {
99
active-caption-text: white;
1010
active-text: #D03E3D;
1111
app-workspace: #191919;
12-
button-face: #353535;
12+
button-face: #373737;
1313
button-highlight: #00A0FA;
1414
button-shadow: #232323;
15-
control: #191919;
15+
control: #303030;
1616
control-dark: #232323;
1717
control-dark-dark: #171717;
1818
control-light: #4A4A4A;

0 commit comments

Comments
 (0)