mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-17 00:57:28 +01:00
* add ability to blacklist phrases in chat * support exact * support exact * i think this fixes the tgui thing * prettier linter eeeeeeeeeeee
46 lines
664 B
JavaScript
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;
|