Add colors to pill bottles and patch packs (#25650)

* Add colors to pill bottles and patch packs

* Tweak chem master colors

* Make patch pack overlay lighter

* Deduplicate code and update colors

* Fix linter

* Move proc

---------

Co-authored-by: Arthri <41360489+a@users.noreply.github.com>
This commit is contained in:
Arthri
2024-06-06 21:08:31 +08:00
committed by GitHub
parent eab017ce4e
commit ac5a4dfe11
4 changed files with 14 additions and 5 deletions
@@ -24,16 +24,18 @@
var/production_mode = null
var/printing = FALSE
var/static/list/pill_bottle_wrappers = list(
COLOR_RED = "Red",
COLOR_RED_LIGHT = "Red",
COLOR_GREEN = "Green",
COLOR_PALE_BTL_GREEN = "Pale Green",
COLOR_BLUE = "Blue",
COLOR_CYAN_BLUE = "Light Blue",
COLOR_TEAL = "Teal",
COLOR_YELLOW = "Yellow",
COLOR_ORANGE = "Orange",
COLOR_PINK = "Pink",
COLOR_MAROON = "Brown"
COLOR_MAROON = "Brown",
COLOR_INDIGO = "Indigo",
COLOR_VIOLET = "Violet",
COLOR_PURPLE = "Purple"
)
var/list/datum/chemical_production_mode/production_modes = list()