38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
# Copyright (c) 2025 Jeffrey Hsu - JITToolBox
|
|
# #
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
# #
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
# #
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
VER_NUM = '1.3.14'
|
|
VERSION = f'Release {VER_NUM}'
|
|
COMPATIBLE_VERSION = ['7.3', '7.4', '7.6', '7.7', '8.0']
|
|
|
|
|
|
class CONSOLE:
|
|
FONT_FAMILY = ("'JetBrains Mono', 'Consolas', 'Menlo', 'Monaco', 'Courier New', "
|
|
"'Ubuntu Mono', 'DejaVu Sans Mono', 'Liberation Mono', monospace")
|
|
BACKGROUND = "#282A36"
|
|
RED = "#FF5555"
|
|
YELLOW = "#F1FA8C"
|
|
WHITE = "#DADBD7"
|
|
GREEN = "#50FA7B"
|
|
BLACK = "#63656C"
|
|
LINE_HEIGHT = "1.2"
|
|
|
|
|
|
class LOGLEVEL:
|
|
INFO = "INFO"
|
|
WARNING = "WARNING"
|
|
ERROR = "ERROR"
|
|
SUCCESS = "SUCCESS"
|