File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -245,6 +245,14 @@ void shell_prefs_set_language_english(bool english) {
245245void shell_prefs_toggle_language_english (void ) {
246246}
247247
248+ GColor shell_prefs_get_theme_highlight_color (void ) {
249+ return PBL_IF_COLOR_ELSE (GColorVividCerulean , GColorBlack );
250+ }
251+
252+ DarkMode shell_prefs_get_dark_mode (void ) {
253+ return DarkModeOff ;
254+ }
255+
248256FontInfo * fonts_get_system_emoji_font_for_size (unsigned int font_height ) {
249257 return NULL ;
250258}
Original file line number Diff line number Diff line change @@ -186,7 +186,11 @@ static bool prv_is_system_app(void) {
186186}
187187
188188bool system_theme_is_dark_mode (void ) {
189- if (!PBL_IF_COLOR_ELSE (prv_is_system_app (), false)) {
189+ // Dark mode is only supported on color platforms, so treat all non-color platforms as light mode
190+ if (PBL_IF_COLOR_ELSE (false, true)) {
191+ return false;
192+ }
193+ if (!prv_is_system_app ()) {
190194 return false;
191195 }
192196 switch (shell_prefs_get_dark_mode ()) {
You can’t perform that action at this time.
0 commit comments