diff --git a/init.lua b/init.lua index 880d2df..7817b3a 100644 --- a/init.lua +++ b/init.lua @@ -39,6 +39,23 @@ else S = function(s) return s end end +unifieddyes.hue_to_idx = { + red = 2, + orange = 3, + yellow = 4, + lime = 5, + green = 6, + aqua = 7, + cyan = 8, + skyblue = 9, + blue = 10, + violet = 11, + magenta = 12, + redviolet = 13, + + grey = 1 +} + -- helper functions for other mods that use this one -- code borrowed from homedecor diff --git a/textures/unifieddyes_palette_aquas.png b/textures/unifieddyes_palette_aquas.png new file mode 100644 index 0000000..85dcab5 Binary files /dev/null and b/textures/unifieddyes_palette_aquas.png differ diff --git a/textures/unifieddyes_palette_blues.png b/textures/unifieddyes_palette_blues.png new file mode 100644 index 0000000..496dc34 Binary files /dev/null and b/textures/unifieddyes_palette_blues.png differ diff --git a/textures/unifieddyes_palette_cyans.png b/textures/unifieddyes_palette_cyans.png new file mode 100644 index 0000000..38d8ee3 Binary files /dev/null and b/textures/unifieddyes_palette_cyans.png differ diff --git a/textures/unifieddyes_palette_greens.png b/textures/unifieddyes_palette_greens.png new file mode 100644 index 0000000..e38a459 Binary files /dev/null and b/textures/unifieddyes_palette_greens.png differ diff --git a/textures/unifieddyes_palette_greys.png b/textures/unifieddyes_palette_greys.png new file mode 100644 index 0000000..1fa5292 Binary files /dev/null and b/textures/unifieddyes_palette_greys.png differ diff --git a/textures/unifieddyes_palette_limes.png b/textures/unifieddyes_palette_limes.png new file mode 100644 index 0000000..ebfd703 Binary files /dev/null and b/textures/unifieddyes_palette_limes.png differ diff --git a/textures/unifieddyes_palette_magentas.png b/textures/unifieddyes_palette_magentas.png new file mode 100644 index 0000000..7c398b7 Binary files /dev/null and b/textures/unifieddyes_palette_magentas.png differ diff --git a/textures/unifieddyes_palette_oranges.png b/textures/unifieddyes_palette_oranges.png new file mode 100644 index 0000000..0986014 Binary files /dev/null and b/textures/unifieddyes_palette_oranges.png differ diff --git a/textures/unifieddyes_palette_reds.png b/textures/unifieddyes_palette_reds.png new file mode 100644 index 0000000..85b8e5a Binary files /dev/null and b/textures/unifieddyes_palette_reds.png differ diff --git a/textures/unifieddyes_palette_redviolets.png b/textures/unifieddyes_palette_redviolets.png new file mode 100644 index 0000000..76e79e4 Binary files /dev/null and b/textures/unifieddyes_palette_redviolets.png differ diff --git a/textures/unifieddyes_palette_skyblues.png b/textures/unifieddyes_palette_skyblues.png new file mode 100644 index 0000000..638025d Binary files /dev/null and b/textures/unifieddyes_palette_skyblues.png differ diff --git a/textures/unifieddyes_palette_violets.png b/textures/unifieddyes_palette_violets.png new file mode 100644 index 0000000..f71b90f Binary files /dev/null and b/textures/unifieddyes_palette_violets.png differ diff --git a/textures/unifieddyes_palette_yellows.png b/textures/unifieddyes_palette_yellows.png new file mode 100644 index 0000000..862ac4f Binary files /dev/null and b/textures/unifieddyes_palette_yellows.png differ