Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- elif persistent.theme == 'darkpink':
- # The color of non-interactive text.
- TEXT = "#ad93ab"
- # Colors for buttons in various states.
- IDLE = "#ba70be"
- HOVER = "#d845d6"
- DISABLED = "#7d6979"
- # Colors for reversed text buttons (selected list entries).
- REVERSE_IDLE = "#d845d8"
- REVERSE_HOVER = "#d845d8"
- REVERSE_TEXT = "#0e0b0e"
- # Colors for the scrollbar thumb.
- SCROLLBAR_IDLE = custom_scrollbar_idle
- SCROLLBAR_HOVER = "#d86b45"
- # 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 = "#d153c9"
- INFO_COLOR = "#997a99"
- INTERACTION_COLOR = "#d153be"
- QUESTION_COLOR = "#d153c4"
- # The color of input text.
- INPUT_COLOR = "#d345d8"
- # A displayable used for the background of windows
- # containing commands, preferences, and navigation info.
- WINDOW = "#361133"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement