diff --git a/tgui/packages/tgui/interfaces/Orbit.tsx b/tgui/packages/tgui/interfaces/Orbit.tsx index 13a3dacd420..20ac8bcce05 100644 --- a/tgui/packages/tgui/interfaces/Orbit.tsx +++ b/tgui/packages/tgui/interfaces/Orbit.tsx @@ -4,6 +4,7 @@ import { capitalizeFirst, multiline } from 'common/string'; import { Button, Collapsible, Icon, Input, Section, Stack } from '../components'; import { Window } from '../layouts'; import { flow } from 'common/fp'; +import { COLORS } from '../constants'; type AntagGroup = [string, Observable[]]; @@ -33,6 +34,7 @@ const ANTAG2COLOR = { 'Abductors': 'pink', 'Ash Walkers': 'olive', 'Biohazards': 'brown', + 'CentCom': COLORS.department.centcom, } as const; const ANTAG2GROUP = { @@ -41,6 +43,11 @@ const ANTAG2GROUP = { 'Ash Walker': 'Ash Walkers', 'Blob': 'Biohazards', 'Sentient Disease': 'Biohazards', + 'CentCom Commander': 'CentCom', + 'CentCom Head Intern': 'CentCom', + 'CentCom Intern': 'CentCom', + 'CentCom Official': 'CentCom', + 'Central Command': 'CentCom', 'Clown Operative': 'Clown Operatives', 'Clown Operative Leader': 'Clown Operatives', 'Nuclear Operative': 'Nuclear Operatives',