Files
5f29576873 Stat Panel font size/family settings & more TGUI-like look (#26535)
* 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>
2024-09-18 19:05:29 +00:00

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;