Advertisement
NatIrisa

RENPY DARK-PINK THEME EXAMPLE

Oct 22nd, 2021
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. elif persistent.theme == 'darkpink':
  2.  
  3. # The color of non-interactive text.
  4. TEXT = "#ad93ab"
  5.  
  6. # Colors for buttons in various states.
  7. IDLE = "#ba70be"
  8. HOVER = "#d845d6"
  9. DISABLED = "#7d6979"
  10.  
  11. # Colors for reversed text buttons (selected list entries).
  12. REVERSE_IDLE = "#d845d8"
  13. REVERSE_HOVER = "#d845d8"
  14. REVERSE_TEXT = "#0e0b0e"
  15.  
  16. # Colors for the scrollbar thumb.
  17. SCROLLBAR_IDLE = custom_scrollbar_idle
  18. SCROLLBAR_HOVER = "#d86b45"
  19.  
  20. # An image used as a separator pattern.
  21. PATTERN = "images/pattern.png"
  22.  
  23. # A displayable used for the background of everything.
  24. BACKGROUND = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
  25.  
  26. # A displayable used for the background of the projects list.
  27. PROJECTS_WINDOW = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
  28.  
  29. # A displayable used the background of information boxes.
  30. INFO_WINDOW = Fixed(Solid(REVERSE_TEXT), xsize=800, ysize=600)
  31.  
  32. # Colors for the titles of information boxes.
  33. ERROR_COLOR = "#d153c9"
  34. INFO_COLOR = "#997a99"
  35. INTERACTION_COLOR = "#d153be"
  36. QUESTION_COLOR = "#d153c4"
  37.  
  38. # The color of input text.
  39. INPUT_COLOR = "#d345d8"
  40.  
  41. # A displayable used for the background of windows
  42. # containing commands, preferences, and navigation info.
  43. WINDOW = "#361133"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement