mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 09:32:58 +00:00
Merge pull request #10209 from jdgleaver/rgui-flux
(RGUI) Enable 'Flux' theme
This commit is contained in:
commit
9678b1f9ed
@ -494,7 +494,6 @@ static const rgui_theme_t rgui_theme_anti_zenburn = {
|
|||||||
0xE0B090B0 /* particle_color */
|
0xE0B090B0 /* particle_color */
|
||||||
};
|
};
|
||||||
|
|
||||||
#if 0
|
|
||||||
static const rgui_theme_t rgui_theme_flux = {
|
static const rgui_theme_t rgui_theme_flux = {
|
||||||
0xFF6FCB9F, /* hover_color */
|
0xFF6FCB9F, /* hover_color */
|
||||||
0xFF666547, /* normal_color */
|
0xFF666547, /* normal_color */
|
||||||
@ -506,7 +505,6 @@ static const rgui_theme_t rgui_theme_flux = {
|
|||||||
0xE0FFE28A, /* shadow_color */
|
0xE0FFE28A, /* shadow_color */
|
||||||
0xE0FB2E01 /* particle_color */
|
0xE0FB2E01 /* particle_color */
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
@ -2169,6 +2167,8 @@ static const rgui_theme_t *get_theme(rgui_t *rgui)
|
|||||||
return &rgui_theme_zenburn;
|
return &rgui_theme_zenburn;
|
||||||
case RGUI_THEME_ANTI_ZENBURN:
|
case RGUI_THEME_ANTI_ZENBURN:
|
||||||
return &rgui_theme_anti_zenburn;
|
return &rgui_theme_anti_zenburn;
|
||||||
|
case RGUI_THEME_FLUX:
|
||||||
|
return &rgui_theme_flux;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -3455,6 +3455,12 @@ static void setting_get_string_representation_uint_rgui_menu_color_theme(
|
|||||||
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_ANTI_ZENBURN),
|
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_ANTI_ZENBURN),
|
||||||
len);
|
len);
|
||||||
break;
|
break;
|
||||||
|
case RGUI_THEME_FLUX:
|
||||||
|
strlcpy(s,
|
||||||
|
msg_hash_to_str(
|
||||||
|
MENU_ENUM_LABEL_VALUE_RGUI_MENU_COLOR_THEME_FLUX),
|
||||||
|
len);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user