30 lines
618 B
Python
30 lines
618 B
Python
import os
|
|
|
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
|
asset_path = os.path.join(
|
|
script_dir, '..', 'assets')
|
|
|
|
# ui
|
|
BAR_HEIGHT = 20
|
|
HEALTH_BAR_WIDTH = 200
|
|
ENERGY_BAR_WIDTH = 140
|
|
ITEM_BOX_SIZE = 80
|
|
UI_FONT = f"{asset_path}/font/joystix.ttf"
|
|
UI_FONT_SIZE = 18
|
|
|
|
# general colors
|
|
WATER_COLOR = '#71ddee'
|
|
UI_BG_COLOR = '#222222'
|
|
UI_BORDER_COLOR = '#111111'
|
|
TEXT_COLOR = '#EEEEEE'
|
|
|
|
# ui colors
|
|
HEALTH_COLOR = 'red'
|
|
ENERGY_COLOR = 'blue'
|
|
UI_BORDER_COLOR_ACTIVE = 'gold'
|
|
|
|
# Upgrade menu
|
|
TEXT_COLOR_SELECTED = '#111111'
|
|
BAR_COLOR = '#EEEEEE'
|
|
BAR_COLOR_SELECTED = '#111111'
|
|
UPGRADE_BG_COLOR_SELECTED = '#EEEEEE'
|