mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Selis <selis@xynolabs.com>
40 lines
562 B
JavaScript
40 lines
562 B
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
export const SETTINGS_TABS = [
|
|
{
|
|
id: 'general',
|
|
name: 'General',
|
|
},
|
|
|
|
{
|
|
id: 'textHighlight',
|
|
name: 'Text Highlights',
|
|
},
|
|
{
|
|
id: 'chatPage',
|
|
name: 'Chat Tabs',
|
|
},
|
|
];
|
|
|
|
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;
|