From ceaec32965be4fee449b32811819798a9b7467f9 Mon Sep 17 00:00:00 2001
From: SabreML <57483089+SabreML@users.noreply.github.com>
Date: Fri, 24 Nov 2023 10:13:31 +0000
Subject: [PATCH] More readable colour for the 'Maintainer' section in staffwho
(#5010)
# About the pull request
Changes the colour of the Maintainer section in the staffwho interface
from '`blue`' (`#0000FF`) to '`dodgerblue`' (`#1E90FF`).
# Explain why it's good for the game
It varies slightly between my monitors, but on both of them it's very
hard to make out what the text actually says because of the bad contrast
between its colour and the background.
# Testing Photographs and Procedure
Screenshots
**Before:**
![before](https://github.com/cmss13-devs/cmss13/assets/57483089/56843789-b05d-4f35-8323-bf5fdb5c60ca)
**After:**
![after](https://github.com/cmss13-devs/cmss13/assets/57483089/1b65994a-6856-4060-b1ee-c0955fb0e5b4)
*(See also:
[Before](https://webaim.org/resources/contrastchecker/?fcolor=0000FF&bcolor=272727)
vs
[After](https://webaim.org/resources/contrastchecker/?fcolor=1E90FF&bcolor=272727)
using WebAIM's contrast checker.)*
# Changelog
:cl:
ui: Tweaked the colour of the 'Maintainer' category in staffwho.
/:cl:
---
code/game/verbs/who.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm
index 8a249d297cbe..faa857f8518f 100644
--- a/code/game/verbs/who.dm
+++ b/code/game/verbs/who.dm
@@ -160,7 +160,7 @@
if(CONFIG_GET(flag/show_manager))
LAZYSET(mappings, "Management", R_PERMISSIONS)
if(CONFIG_GET(flag/show_devs))
- LAZYSET(mappings, "Maintainers", R_PROFILER)
+ LAZYSET(mappings, "Maintainers", R_PROFILER)
LAZYSET(mappings, "Admins", R_ADMIN)
if(CONFIG_GET(flag/show_mods))
LAZYSET(mappings, "Moderators", R_MOD)