diff --git a/gui.rpy b/gui.rpy index 4a5022a..0ee4cfc 100644 --- a/gui.rpy +++ b/gui.rpy @@ -25,7 +25,7 @@ define config.check_conflicting_properties = True ## The colors of text in the interface. ## An accent color used throughout the interface to label and highlight text. -define gui.accent_color = '#cc0000' +define gui.accent_color = '#ffffff' ## The color used for a text button when it is neither selected nor hovered. define gui.idle_color = '#888888' @@ -46,8 +46,8 @@ define gui.insensitive_color = '#8888887f' ## Colors used for the portions of bars that are not filled in. These are not ## used directly, but are used when re-generating bar image files. -define gui.muted_color = '#510000' -define gui.hover_muted_color = '#7a0000' +define gui.muted_color = '#9e9e9e' +define gui.hover_muted_color = '#c7c7c7' ## The colors used for dialogue and menu choice text. define gui.text_color = '#ffffff' diff --git a/gui.rpyc b/gui.rpyc index 3cb1677..8892d56 100644 Binary files a/gui.rpyc and b/gui.rpyc differ diff --git a/gui/frame.png b/gui/frame.png index aa0910d..6a4dfd0 100644 Binary files a/gui/frame.png and b/gui/frame.png differ diff --git a/gui/overlay/game_menu.png b/gui/overlay/game_menu.png index 56a2227..884013f 100644 Binary files a/gui/overlay/game_menu.png and b/gui/overlay/game_menu.png differ diff --git a/gui/window_icon.png b/gui/window_icon.png index 52a2ddc..1eede05 100644 Binary files a/gui/window_icon.png and b/gui/window_icon.png differ diff --git a/screens.rpy b/screens.rpy index 549979f..2b5b7a9 100644 --- a/screens.rpy +++ b/screens.rpy @@ -625,6 +625,7 @@ screen about(): style_prefix "about" vbox: + xpos 50 label "[config.name!t]" text _("Version [config.version!t]\n") @@ -812,6 +813,7 @@ screen preferences(): if renpy.variant("pc") or renpy.variant("web"): vbox: + xpos 50 style_prefix "radio" label _("Display") textbutton _("Window") action Preference("display", "window") @@ -1057,6 +1059,7 @@ screen help(): style_prefix "help" vbox: + xpos 50 spacing 15 hbox: diff --git a/screens.rpyc b/screens.rpyc index aaf7879..71fd4e2 100644 Binary files a/screens.rpyc and b/screens.rpyc differ diff --git a/script.rpyc b/script.rpyc index ddc06cf..fd09d47 100644 Binary files a/script.rpyc and b/script.rpyc differ