15 lines
451 B
Python
15 lines
451 B
Python
from PyQt6.QtGui import QFont
|
|
import globals
|
|
|
|
mainlabel_font = None
|
|
sublabel_font = None
|
|
sublabelvalue_font = None
|
|
|
|
if globals.os_type == "Windows":
|
|
sublabelvalue_font = "Cascadia Code"
|
|
sublabel_font = "Calibre"
|
|
mainlabel_font = "Calibre"
|
|
elif globals.os_type == "Linux":
|
|
sublabelvalue_font = "Liberation Mono"
|
|
sublabel_font = "Cantarell"
|
|
mainlabel_font = "Cantarell" |