mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
* New look and preferences * A lot of fixes and style issues * Add divider betwen chat and stat panel * More 516 compatability * Scale turf inspect too * I am stupid * Rebuild TGUI * Rebuild * Rebuild TGUI * I love it * Are you fucking kidding me? * Remove container and use body instead * Fuck readability * GOD, HOW I FUCKING HATE `ALT-CLICK` CODE * I AM SO FUCKING STUPID * Un-Fuck readability * Finally fixed? * Finally... --------- Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
42 lines
602 B
JavaScript
42 lines
602 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',
|
|
},
|
|
{
|
|
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;
|