Skip to content

Commit

Permalink
tgui
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthnthree committed Aug 21, 2024
1 parent c4f97df commit ec3122e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tgui/packages/tgui-panel/chat/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const MESSAGE_TYPE_EVENTCHAT = 'eventchat';
export const MESSAGE_TYPE_ADMINLOG = 'adminlog';
export const MESSAGE_TYPE_ATTACKLOG = 'attacklog';
export const MESSAGE_TYPE_DEBUG = 'debug';
export const MESSAGE_TYPE_EFFIGY_DEBUG = 'effigydebug';

// Metadata for each message type
export const MESSAGE_TYPES = [
Expand Down Expand Up @@ -145,4 +146,11 @@ export const MESSAGE_TYPES = [
description: 'DEBUG: SSPlanets subsystem Recover().',
admin: true,
},
{
type: MESSAGE_TYPE_EFFIGY_DEBUG,
name: 'Effigy Debug',
description: 'DEBUG: nya.',
selector: '.debugyellow, .debugcyan, .debugwhite, .debugpink',
admin: true,
},
];
18 changes: 18 additions & 0 deletions tgui/packages/tgui-panel/styles/tgchat/chat-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1131,3 +1131,21 @@ $border-width-px: $border-width * 1px;
background-color: darken(map.get($alert-stripe-colors, $color-name), 5);
}
}

// EFFIGY

.debugcyan {
color: #00ffff;
}

.debugyellow {
color: #ffff00;
}

.debugwhite {
color: #ffffff;
}

.debugpink {
color: #f0197d;
}
18 changes: 18 additions & 0 deletions tgui/packages/tgui-panel/styles/tgchat/chat-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1164,3 +1164,21 @@ $border-width-px: $border-width * 1px;
);
}
}

// EFFIGY

.debugcyan {
color: #00ffff;
}

.debugyellow {
color: #ffff00;
}

.debugwhite {
color: #ffffff;
}

.debugpink {
color: #f0197d;
}

0 comments on commit ec3122e

Please sign in to comment.