-
-
Notifications
You must be signed in to change notification settings - Fork 112
Color Mappings
DaFuqs edited this page Jul 13, 2026
·
1 revision
Spectrum has the ability to map any registry object to an ink color. Funnily, this mapping is stored in a registry itself. Yes, it is technically possible to register a color mapping for a color mapping. I have not tried doing so.
Spectrum uses that data for display purposes, for example:
- Items
- the particles spawned from items in item bowls
- the particles spawned when finished crafting a fusion shrine recipe
- Fluids
- the "rising fluid" particles spawned when crafting fusion shrine recipes
You can specify color mappings by placing json files in the directory <data_pack_or_mod_name>/spectrum/ink_color_mapping/<registry_name>.
-
{} entry: Predicates that have to pass for this fishing entry to evaluate-
(InkColor) key: the ink color the entries invalueare mapped to -
(List of registry entries) value: the element(s) to map the ink color to
-
Path: resources/data/spectrum/ink_color_mapping/item
{
"spectrum:black": [
"minecraft:black_wool",
"minecraft:blackstone"
],
"spectrum:blue": [
"minecraft:blue_wool",
"minecraft:turtle_scute"
],Path: resources/data/spectrum/ink_color_mapping/fluid
{
"spectrum:pink": [
"spectrum:liquid_crystal",
"spectrum:flowing_liquid_crystal"
],
"spectrum:brown": [
"spectrum:sludge",
"spectrum:flowing_sludge"
]
}General
For Players
- Getting Started
- Mixing Colors
- Stuck on how to progress?
- Main Progression Steps (MAJOR SPOILERS)
For Server Admins / Modpack Creators
- Integrating into Modpacks
- Adjusting Progression
- Advancement Criteria
- Modonomicon Pages
- Modonomicon Recipe Pages
- Commands
- Type Specific Predicates
For Map Makers
Recipe Types
- Custom Pigment Pedestal Recipes
- Custom Anvil Crushing Recipes
- Custom Fusion Shrine Recipes
- Custom Enchanter Recipes
- Custom Enchantment Upgrade Recipes
- Custom Potion Workshop Brewing Recipes
- Custom Potion Workshop Crafting Recipes
- Custom Potion Workshop Reagents
- Custom Spirit Instiller Recipes
- Custom Liquid Dipping Recipes
- Custom Ink Converting Recipes
- Custom Crystallarieum Recipes
- Custom Cinderhearth Recipes
- Custom Titration Barrel Recipes
- Fluid Ingredients
Loot Tables
More Customisation
- Adding Nature's Staff Conversions
- Adding Entity Fishing Entries
- Adding Resonance Drops
- Adding Crystal Apothecary Harvestables
- Adding Particle Spawner Particles
- Adding Color Mappings
- Adding Geode Ores
For Contributors