diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm index bf686cb1953..5175b260232 100644 --- a/code/__DEFINES/colors.dm +++ b/code/__DEFINES/colors.dm @@ -172,6 +172,7 @@ #define COLOR_THEME_GLASS "#75A4C4" #define COLOR_THEME_CLOCKWORK "#CFBA47" #define COLOR_THEME_TRASENKNOX "#3ce375" +#define COLOR_THEME_DETECTIVE "#c7b08b" ///Colors for eigenstates #define COLOR_PERIWINKLEE "#9999FF" diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index c98c830f747..7547c187d97 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -13,7 +13,8 @@ GLOBAL_LIST_INIT(available_ui_styles, list( "Operative" = 'icons/hud/screen_operative.dmi', "Clockwork" = 'icons/hud/screen_clockwork.dmi', "Glass" = 'icons/hud/screen_glass.dmi', - "Trasen-Knox" = 'icons/hud/screen_trasenknox.dmi' + "Trasen-Knox" = 'icons/hud/screen_trasenknox.dmi', + "Detective" = 'icons/hud/screen_detective.dmi', )) /proc/ui_style2icon(ui_style) diff --git a/code/modules/tooltip/tooltip.html b/code/modules/tooltip/tooltip.html index 33c7468a81f..cb792332253 100644 --- a/code/modules/tooltip/tooltip.html +++ b/code/modules/tooltip/tooltip.html @@ -83,6 +83,9 @@ .trasen-knox .wrap {border-color: #998e81;} .trasen-knox .content {color: #3ce375; border-color: #998e81; background-color: #1e1d21;} + .detective .wrap {border-color: #2c0F0c;} + .detective .wrap {color: #c7b08b; border-color: #2c0F0c; background-color: #221c1a;} + diff --git a/icons/hud/64x16_actions.dmi b/icons/hud/64x16_actions.dmi index f67dc1e938d..812d888846e 100644 Binary files a/icons/hud/64x16_actions.dmi and b/icons/hud/64x16_actions.dmi differ diff --git a/icons/hud/screen_detective.dmi b/icons/hud/screen_detective.dmi new file mode 100644 index 00000000000..d1d7e49a832 Binary files /dev/null and b/icons/hud/screen_detective.dmi differ