diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm index d1f489f0555..55f6781eafb 100644 --- a/code/__DEFINES/colors.dm +++ b/code/__DEFINES/colors.dm @@ -211,6 +211,7 @@ #define COLOR_THEME_CLOCKWORK "#CFBA47" #define COLOR_THEME_TRASENKNOX "#3ce375" #define COLOR_THEME_DETECTIVE "#c7b08b" +#define COLOR_THEME_BLUE98 "#7d8dab" // Bubber Addition ///Colors for eigenstates #define COLOR_PERIWINKLEE "#9999FF" diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index 53d339d4269..250c3464979 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -15,6 +15,7 @@ GLOBAL_LIST_INIT(available_ui_styles, list( "Glass" = 'icons/hud/screen_glass.dmi', "Trasen-Knox" = 'icons/hud/screen_trasenknox.dmi', "Detective" = 'icons/hud/screen_detective.dmi', + "Blue - 98" = 'modular_zubbers/master_files/icons/hud/screen_blue98.dmi' // Bubber Addition )) //SKYRAT EDIT - ADDITION - ERP ICONS FIX diff --git a/code/modules/tooltip/tooltip.html b/code/modules/tooltip/tooltip.html index cb792332253..40167f3674a 100644 --- a/code/modules/tooltip/tooltip.html +++ b/code/modules/tooltip/tooltip.html @@ -86,6 +86,9 @@ .detective .wrap {border-color: #2c0F0c;} .detective .wrap {color: #c7b08b; border-color: #2c0F0c; background-color: #221c1a;} + .blue98 .wrap {border-color: #a0fbfc;} + .blue98 .wrap {color: #7e8fab; border-color: #a0fbfc; background-color: #211830;} + diff --git a/icons/hud/64x16_actions.dmi b/icons/hud/64x16_actions.dmi index 812d888846e..3a98a6c16c7 100644 Binary files a/icons/hud/64x16_actions.dmi and b/icons/hud/64x16_actions.dmi differ diff --git a/modular_zubbers/master_files/icons/hud/screen_blue98.dmi b/modular_zubbers/master_files/icons/hud/screen_blue98.dmi new file mode 100644 index 00000000000..ca3085e3838 Binary files /dev/null and b/modular_zubbers/master_files/icons/hud/screen_blue98.dmi differ