diff --git a/src/pc/djui/djui_font.c b/src/pc/djui/djui_font.c index c1628276..ce530693 100644 --- a/src/pc/djui/djui_font.c +++ b/src/pc/djui/djui_font.c @@ -54,7 +54,7 @@ static void djui_font_title_render_char(char* c) { u32 ty = index / 16; extern ALIGNED8 const u8 texture_font_title[]; - djui_gfx_render_texture_tile(texture_font_title, 1024, 512, 32, tx * 64, ty * 64, 64, 64, false); + djui_gfx_render_texture_tile(texture_font_title, 1024, 512, 32, tx * 64 - 8, ty * 64 - 4, 64, 64, true); } static f32 djui_font_title_char_width(char* text) { @@ -62,7 +62,7 @@ static f32 djui_font_title_char_width(char* text) { if (c == ' ') { return 0.30f; } c = djui_unicode_get_base_char(text); extern const f32 font_title_widths[]; - return font_title_widths[(u8)c - '!']; + return font_title_widths[(u8)c - '!'] * 1.1f; } static const struct DjuiFont sDjuiFontTitle = { diff --git a/src/pc/djui/djui_panel_menu.c b/src/pc/djui/djui_panel_menu.c index d9aa601c..8abb416d 100644 --- a/src/pc/djui/djui_panel_menu.c +++ b/src/pc/djui/djui_panel_menu.c @@ -7,10 +7,10 @@ #define RAINBOW_TEXT_LEN 255 char* sRainbowColors[] = { - "\\#ff4040\\", - "\\#50e750\\", - "\\#50b3ff\\", - "\\#ffef50\\", + "\\#ff3030\\", + "\\#40e740\\", + "\\#40b0ff\\", + "\\#ffef40\\", }; char sRainbowText[RAINBOW_TEXT_LEN + 1] = { 0 }; diff --git a/textures/custom_font/custom_font_title.rgba32.png b/textures/custom_font/custom_font_title.rgba32.png index 603d976f..17b984cb 100644 Binary files a/textures/custom_font/custom_font_title.rgba32.png and b/textures/custom_font/custom_font_title.rgba32.png differ