We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89bf800 commit fec251bCopy full SHA for fec251b
1 file changed
src/fw/shell/sdk/prefs.c
@@ -277,3 +277,19 @@ UnitsDistance shell_prefs_get_units_distance(void) {
277
}
278
279
#endif
280
+
281
+GColor shell_prefs_get_settings_menu_highlight_color(void) {
282
+ return PBL_IF_COLOR_ELSE(GColorCobaltBlue, GColorBlack);
283
+}
284
285
+void shell_prefs_set_settings_menu_highlight_color(GColor color) {
286
+ // Not used in SDK shell
287
288
289
+GColor shell_prefs_get_apps_menu_highlight_color(void) {
290
+ return PBL_IF_COLOR_ELSE(GColorVividCerulean, GColorBlack);
291
292
293
+void shell_prefs_set_apps_menu_highlight_color(GColor color) {
294
295
0 commit comments