Advertisement
NatIrisa

THE CODE FROM RENPY

Oct 22nd, 2021
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. # The color of the non-interactive text.
  2. TEXT = custom_text
  3.  
  4. # Colors for buttons in various states.
  5. IDLE = custom_idle
  6. HOVER = custom_hover
  7. DISABLED = custom_disabled
  8.  
  9. # Colors for reversed text buttons (selected list entries).
  10. REVERSE_IDLE = custom_reverse_idle
  11. REVERSE_HOVER = custom_reverse_hover
  12. REVERSE_TEXT = custom_reverse_text
  13.  
  14. # Colors for the scrollbar thumb.
  15. SCROLLBAR_IDLE = custom_scrollbar_idle
  16. SCROLLBAR_HOVER = custom_scrollbar_hover
  17.  
  18. # An image used as a separator pattern.
  19. PATTERN = "images/pattern.png"
  20.  
  21. # A displayable used for the background of everything.
  22. BACKGROUND = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
  23.  
  24. # A displayable used for the background of the projects list.
  25. PROJECTS_WINDOW = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
  26.  
  27. # A displayable used the background of information boxes.
  28. INFO_WINDOW = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
  29.  
  30. # Colors for the titles of information boxes.
  31. ERROR_COLOR = custom_error_color
  32. INFO_COLOR = custom_info_color
  33. INTERACTION_COLOR = custom_interaction_color
  34. QUESTION_COLOR = custom_question_color
  35.  
  36. # The color of input text.
  37. INPUT_COLOR = custom_input_color
  38.  
  39. # A displayable used for the background of windows
  40. # containing commands, preferences, and navigation info.
  41. WINDOW = custom_window
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement