Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # The color of the non-interactive text.
- TEXT = custom_text
- # Colors for buttons in various states.
- IDLE = custom_idle
- HOVER = custom_hover
- DISABLED = custom_disabled
- # Colors for reversed text buttons (selected list entries).
- REVERSE_IDLE = custom_reverse_idle
- REVERSE_HOVER = custom_reverse_hover
- REVERSE_TEXT = custom_reverse_text
- # Colors for the scrollbar thumb.
- SCROLLBAR_IDLE = custom_scrollbar_idle
- SCROLLBAR_HOVER = custom_scrollbar_hover
- # An image used as a separator pattern.
- PATTERN = "images/pattern.png"
- # A displayable used for the background of everything.
- BACKGROUND = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
- # A displayable used for the background of the projects list.
- PROJECTS_WINDOW = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
- # A displayable used the background of information boxes.
- INFO_WINDOW = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
- # Colors for the titles of information boxes.
- ERROR_COLOR = custom_error_color
- INFO_COLOR = custom_info_color
- INTERACTION_COLOR = custom_interaction_color
- QUESTION_COLOR = custom_question_color
- # The color of input text.
- INPUT_COLOR = custom_input_color
- # A displayable used for the background of windows
- # containing commands, preferences, and navigation info.
- WINDOW = custom_window
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement