Files
CHOMPStation2/tgui/packages/tgui-panel/settings/constants.ts
CHOMPStation2StaffMirrorBot c1a87d7299 [MIRROR] Statpanel styles (#9325)
Co-authored-by: ShadowLarkens <shadowlarkens@gmail.com>
2024-10-27 01:23:55 +02:00

55 lines
769 B
TypeScript

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