10 lines
230 B
Python
10 lines
230 B
Python
class Constants:
|
|
green = (106, 171, 115)
|
|
red = (219, 92, 92)
|
|
host = "lukesau.com"
|
|
port = 8328
|
|
header_size = 1024
|
|
text_format = "utf-8"
|
|
small_window_size = (300, 150)
|
|
medium_window_size = (300, 500)
|