Ambient Fogs - resource pack for Polytone
Minecraft 26.1.2 (Fabric)

WHAT THIS IS
------------
A resource pack that changes the sky color, fog color, and (for
water biomes) underwater fog color depending on which biome you're
standing in. It uses Polytone's "Biome Effect Modifiers" /
Environment Attributes system, which on 26.1.2 uses the vanilla
attribute_modifiers block introduced in 1.21.11.

REQUIREMENTS
------------
1. Fabric Loader for Minecraft 26.1.2
2. Fabric API (26.1.2 build)
3. Polytone (26.1.2 build) - download from Modrinth or CurseForge:
   https://modrinth.com/mod/polytone
   https://www.curseforge.com/minecraft/mc-mods/polytone

INSTALLATION
------------
1. Install Fabric Loader, Fabric API, and Polytone into your
   .minecraft/mods folder (or your instance's mods folder).
2. Drop this pack's folder (or the zipped version of it) into
   .minecraft/resourcepacks.
3. Launch the game, open Options > Resource Packs, and move this
   pack to the active list.
4. In-world, press F3+T to reload if you tweak colors while testing.

STRUCTURE
---------
pack.mcmeta
assets/minecraft/polytone/biome_modifiers/<biome>.json
  - one file per vanilla biome, e.g. desert.json, swamp.json
  - each sets minecraft:visual/sky_color, minecraft:visual/fog_color,
    and (for oceans/rivers/swamps) minecraft:visual/water_fog_color

CUSTOMIZING COLORS
-------------------
Open any .json file in assets/minecraft/polytone/biome_modifiers/
and edit the hex color strings, e.g.:

{
  "attributes_modifiers": {
    "minecraft:visual/sky_color": "#7BA4FF",
    "minecraft:visual/fog_color": "#C0D8FF"
  }
}

Colors are plain #RRGGBB hex. Nether and End biomes only have
fog_color set (there's no visible sky there, so sky_color is
omitted for them).

ADDING MORE BIOMES
-------------------
To cover a biome not included here (including modded biomes), add
a new file named assets/<biome namespace>/polytone/biome_modifiers/
<biome path>.json with the same structure. See Polytone's wiki for
the full list of available attributes:
https://github.com/MehVahdJukaar/polytone/wiki/Environment-Attributes-Modifiers
