Files
Paradise/tgui/packages/tgui-panel/settings/constants.js
PoobleandGitHub c73dc100b0 Add ability to blacklist phrases in chat (#30902)
* add ability to blacklist phrases in chat

* support exact

* support exact

* i think this fixes the tgui thing

* prettier linter eeeeeeeeeeee
2025-11-23 02:56:53 +00:00

46 lines
664 B
JavaScript

/**
* @file
* @copyright 2020 Aleksej Komarov
* @license MIT
*/
export const SETTINGS_TABS = [
{
id: 'general',
name: 'General',
},
{
id: 'textHighlight',
name: 'Text Highlights',
},
{
id: 'textBlacklist',
name: 'Text Blacklist',
},
{
id: 'chatPage',
name: 'Chat Tabs',
},
{
id: 'statPanel',
name: 'Stat Panel',
},
];
export const FONTS_DISABLED = 'Default';
export const FONTS = [
FONTS_DISABLED,
'Arial',
'Arial Black',
'Comic Sans MS',
'Impact',
'Lucida Sans Unicode',
'Tahoma',
'Trebuchet MS',
'Courier New',
'Lucida Console',
];
export const MAX_HIGHLIGHT_SETTINGS = 10;