hyperpixel123 commited on
Commit
f7b72c0
·
verified ·
1 Parent(s): ad2b6f0

Add gallery, discoverability tags, and launch kit

Browse files
.gitignore ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ __pycache__/
2
+ *.py[cod]
3
+ .venv/
4
+ build/
5
+ *.egg-info/
6
+ .DS_Store
LAUNCH_KIT.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Bilta Gilata1 launch kit
2
+
3
+ ## Short post
4
+
5
+ I built Bilta Gilata1: a free local pixel-art generator for Apple Silicon. It supports reference images, reproducible seeds, 16–256 px output, and exact quantization to 65 Aseprite palettes—including PICO-8. No API key or credits.
6
+
7
+ GitHub: https://github.com/Abd196-bit/bilta-gilata1
8
+ Hugging Face: https://huggingface.co/hyperpixel123/bilta-gilata1
9
+
10
+ ## Reddit / Discord
11
+
12
+ **Title:** I made a free local pixel-art generator with 65 Aseprite palettes
13
+
14
+ Bilta Gilata1 runs locally on Apple Silicon and turns text or a reference image into palette-locked pixel art. It exports 16, 32, 48, 64, 128, or 256 px PNGs, supports deterministic seeds, and includes PICO-8, DB16/DB32, Game Boy, NES, and dozens of other palettes. The CLI and installer are public; model weights download from their licensed upstream repositories on first run. Feedback and example prompts are welcome.
15
+
16
+ ## Hacker News
17
+
18
+ **Title:** Show HN: Bilta Gilata1 – local pixel-art generation with 65 Aseprite palettes
19
+
20
+ The interesting part is the final palette constraint: after local generation, every output is nearest-color quantized against the selected Aseprite palette with dithering disabled, so the PNG cannot silently introduce off-palette colors.
21
+
22
+ ## Suggested tags
23
+
24
+ `pixelart` `gamedev` `aseprite` `pico8` `indiedev` `mlx` `apple-silicon` `opensource` `python`
25
+
26
+ ## Launch checklist
27
+
28
+ - Post one example and its exact prompt.
29
+ - Ask for palette and prompt requests instead of only announcing.
30
+ - Respond to every useful bug report with a tracked issue.
31
+ - Publish a small release every one or two weeks.
32
+ - Never describe upstream weights as original Bilta weights.
README.md CHANGED
@@ -4,13 +4,32 @@ library_name: mflux
4
  license: other
5
  tags:
6
  - pixel-art
 
 
 
 
 
 
7
  - apple-silicon
8
  - local
9
  ---
10
 
11
  # Bilta Gilata1
12
 
13
- A free, local Apple-Silicon pixel-art CLI with 65 Aseprite palettes, reference-image guidance, exact palette quantization, and 16–256 px output.
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
  ## Install
16
 
@@ -27,6 +46,32 @@ chmod +x install.sh bilta_gilata1.py
27
  .venv/bin/python bilta_gilata1.py "a tiny moon wizard" --palette pico-8 --size 128 --output wizard.png
28
  ```
29
 
30
- Use `--list-palettes` to print all 65 bundled choices. Model files download to the local cache on first generation and are not included in this repository.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- See `THIRD_PARTY_NOTICES.md` before redistribution or commercial use.
 
4
  license: other
5
  tags:
6
  - pixel-art
7
+ - game-development
8
+ - aseprite
9
+ - pico-8
10
+ - sprites
11
+ - cli
12
+ - mlx
13
  - apple-silicon
14
  - local
15
  ---
16
 
17
  # Bilta Gilata1
18
 
19
+ **Turn a sentence into palette-locked pixel art—locally on your Mac.**
20
+
21
+ Bilta Gilata1 is a free Apple-Silicon pixel-art CLI with 65 Aseprite palettes, reference-image guidance, deterministic seeds, and exact 16–256 px output. No API key, credits, or uploaded prompts.
22
+
23
+ ![Bilta Gilata1 examples](assets/gallery.png)
24
+
25
+ ## Why use it?
26
+
27
+ - **Actually local:** generation runs on Apple Silicon.
28
+ - **Exact palettes:** output is quantized to one of 65 Aseprite palettes.
29
+ - **PICO-8 ready:** includes the official 16-color palette option.
30
+ - **Reference images:** guide composition and character appearance from a local file.
31
+ - **Reproducible:** reuse `--seed` to regenerate a composition.
32
+ - **Game-sized:** export at 16, 32, 48, 64, 128, or 256 pixels.
33
 
34
  ## Install
35
 
 
46
  .venv/bin/python bilta_gilata1.py "a tiny moon wizard" --palette pico-8 --size 128 --output wizard.png
47
  ```
48
 
49
+ Reference-guided generation:
50
+
51
+ ```bash
52
+ .venv/bin/python bilta_gilata1.py "a forest adventurer" \
53
+ --reference portrait.jpg --palette db16 --size 64 --output adventurer.png
54
+ ```
55
+
56
+ Browse palettes:
57
+
58
+ ```bash
59
+ .venv/bin/python bilta_gilata1.py --list-palettes
60
+ ```
61
+
62
+ ## Requirements
63
+
64
+ - Apple Silicon Mac
65
+ - Python 3.10+
66
+ - About 5 GB free for the first model download
67
+ - Internet required only for the initial download
68
+
69
+ ## Gallery
70
+
71
+ | Sprite | Animation study | Palette output |
72
+ |---|---|---|
73
+ | ![Knight](assets/knight.png) | ![Knight walk](assets/knight-walk.gif) | ![Moon wizard](assets/moon-wizard.png) |
74
+
75
+ ## Responsible distribution
76
 
77
+ This repository distributes the Bilta runtime and palette post-processor, not third-party model weights. Review `THIRD_PARTY_NOTICES.md`, including the upstream non-commercial checkpoint terms, before commercial use or redistribution.
assets/gallery.png ADDED
assets/knight-walk.gif ADDED
assets/knight.png ADDED
assets/moon-wizard.png ADDED
pyproject.toml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["hatchling>=1.26"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "bilta-gilata1"
7
+ version = "1.0.0"
8
+ description = "Local Apple-Silicon pixel-art generator with 65 Aseprite palettes"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ dependencies = ["mflux==0.18.1", "Pillow>=10"]
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ "Operating System :: MacOS :: MacOS X",
15
+ "Environment :: Console",
16
+ "Topic :: Multimedia :: Graphics",
17
+ ]
18
+
19
+ [project.scripts]
20
+ bilta-gilata1 = "bilta_gilata1.cli:main"
21
+
22
+ [project.urls]
23
+ Homepage = "https://huggingface.co/hyperpixel123/bilta-gilata1"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["src/bilta_gilata1"]
27
+
28
+ [tool.hatch.build.targets.sdist]
29
+ include = ["src/bilta_gilata1", "README.md", "THIRD_PARTY_NOTICES.md", "pyproject.toml"]
src/bilta_gilata1/__init__.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ """Bilta Gilata1 local pixel-art generator."""
2
+
3
+ __version__ = "1.0.0"
src/bilta_gilata1/cli.py ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from __future__ import annotations
2
+
3
+ import argparse
4
+ import json
5
+ import os
6
+ import random
7
+ import subprocess
8
+ from importlib.resources import files
9
+ from pathlib import Path
10
+
11
+ from PIL import Image
12
+
13
+ PALETTES = json.loads(files("bilta_gilata1").joinpath("palettes.json").read_text())["palettes"]
14
+ DEFAULT_CACHE = Path(os.environ.get("BILTA_GILATA_CACHE", Path.home() / ".cache" / "bilta-gilata1"))
15
+
16
+
17
+ def quantize(source, target, size, palette_name):
18
+ image = Image.open(source).convert("RGB").resize((size, size), Image.Resampling.BOX)
19
+ colors = PALETTES[palette_name]["colors"][:256]
20
+ palette = Image.new("P", (1, 1))
21
+ values = [component for color in colors for component in bytes.fromhex(color[1:])]
22
+ palette.putpalette(values + [0] * (768 - len(values)))
23
+ image.quantize(palette=palette, dither=Image.Dither.NONE).save(target, "PNG")
24
+
25
+
26
+ def main():
27
+ parser = argparse.ArgumentParser(prog="bilta-gilata1", description="Generate local pixel art on Apple Silicon")
28
+ parser.add_argument("prompt", nargs="?")
29
+ parser.add_argument("--palette", default="pico-8", choices=sorted(PALETTES))
30
+ parser.add_argument("--size", type=int, default=128, choices=(16, 32, 48, 64, 128, 256))
31
+ parser.add_argument("--reference", type=Path)
32
+ parser.add_argument("--output", type=Path, default=Path("bilta-gilata1.png"))
33
+ parser.add_argument("--seed", type=int, default=None)
34
+ parser.add_argument("--list-palettes", action="store_true")
35
+ args = parser.parse_args()
36
+ if args.list_palettes:
37
+ print("\n".join(sorted(PALETTES)))
38
+ return 0
39
+ if not args.prompt:
40
+ parser.error("a prompt is required")
41
+ executable = Path(os.environ.get("BILTA_GILATA_MFLUX", "mflux-generate-flux2"))
42
+ DEFAULT_CACHE.mkdir(parents=True, exist_ok=True)
43
+ work = DEFAULT_CACHE / "jobs" / str(random.randint(100000, 999999))
44
+ work.mkdir(parents=True)
45
+ master = work / "master.png"
46
+ prompt = (f"pixel art sprite, {args.prompt}, one centered readable game asset, crisp square pixels, "
47
+ f"limited {args.palette} palette, plain background, no text, no interface")
48
+ command = [str(executable), "--model", "ar9av/FLUX.2-klein-4B-mflux-4bit", "--base-model", "flux2-klein-4b",
49
+ "--lora", "Limbicnation/pixel-art-lora:pytorch_lora_weights.safetensors", "1.0", "--low-ram",
50
+ "--mlx-cache-limit-gb", "1", "--prompt", prompt, "--steps", "4", "--guidance", "1.0",
51
+ "--width", "512", "--height", "512", "--seed", str(args.seed or random.randint(1, 999999999)),
52
+ "--output", str(master)]
53
+ if args.reference:
54
+ if not args.reference.is_file():
55
+ raise SystemExit(f"Reference not found: {args.reference}")
56
+ command += ["--image", str(args.reference.resolve()), "0.58"]
57
+ env = dict(os.environ, HF_HOME=str(DEFAULT_CACHE / "models"))
58
+ try:
59
+ subprocess.run(command, check=True, env=env)
60
+ except FileNotFoundError:
61
+ raise SystemExit("mflux executable not found; reinstall with: pipx install bilta-gilata1")
62
+ args.output.parent.mkdir(parents=True, exist_ok=True)
63
+ quantize(master, args.output, args.size, args.palette)
64
+ print(args.output.resolve())
65
+ return 0
66
+
67
+
68
+ if __name__ == "__main__":
69
+ raise SystemExit(main())
src/bilta_gilata1/palettes.json ADDED
@@ -0,0 +1,2851 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format": "bilta-gilata1-palettes",
3
+ "count": 65,
4
+ "palettes": {
5
+ "aap-64": {
6
+ "colors": [
7
+ "#060608",
8
+ "#141013",
9
+ "#3b1725",
10
+ "#73172d",
11
+ "#b4202a",
12
+ "#df3e23",
13
+ "#fa6a0a",
14
+ "#f9a31b",
15
+ "#ffd541",
16
+ "#fffc40",
17
+ "#d6f264",
18
+ "#9cdb43",
19
+ "#59c135",
20
+ "#14a02e",
21
+ "#1a7a3e",
22
+ "#24523b",
23
+ "#122020",
24
+ "#143464",
25
+ "#285cc4",
26
+ "#249fde",
27
+ "#20d6c7",
28
+ "#a6fcdb",
29
+ "#ffffff",
30
+ "#fef3c0",
31
+ "#fad6b8",
32
+ "#f5a097",
33
+ "#e86a73",
34
+ "#bc4a9b",
35
+ "#793a80",
36
+ "#403353",
37
+ "#242234",
38
+ "#221c1a",
39
+ "#322b28",
40
+ "#71413b",
41
+ "#bb7547",
42
+ "#dba463",
43
+ "#f4d29c",
44
+ "#dae0ea",
45
+ "#b3b9d1",
46
+ "#8b93af",
47
+ "#6d758d",
48
+ "#4a5462",
49
+ "#333941",
50
+ "#422433",
51
+ "#5b3138",
52
+ "#8e5252",
53
+ "#ba756a",
54
+ "#e9b5a3",
55
+ "#e3e6ff",
56
+ "#b9bffb",
57
+ "#849be4",
58
+ "#588dbe",
59
+ "#477d85",
60
+ "#23674e",
61
+ "#328464",
62
+ "#5daf8d",
63
+ "#92dcba",
64
+ "#cdf7e2",
65
+ "#e4d2aa",
66
+ "#c7b08b",
67
+ "#a08662",
68
+ "#796755",
69
+ "#5a4e44",
70
+ "#423934"
71
+ ],
72
+ "source": "extensions/adigunpolack-palettes/aap-64.gpl"
73
+ },
74
+ "aap-micro12": {
75
+ "colors": [
76
+ "#040303",
77
+ "#1c1618",
78
+ "#47416b",
79
+ "#6c8c50",
80
+ "#e3d245",
81
+ "#d88038",
82
+ "#a13d3b",
83
+ "#4e282e",
84
+ "#9a407e",
85
+ "#f0d472",
86
+ "#f9f5ef",
87
+ "#8a8fc4"
88
+ ],
89
+ "source": "extensions/adigunpolack-palettes/aap-micro12.gpl"
90
+ },
91
+ "aap-radiantxv": {
92
+ "colors": [
93
+ "#070505",
94
+ "#211919",
95
+ "#523a2a",
96
+ "#8a6b3e",
97
+ "#c19c4d",
98
+ "#eadb74",
99
+ "#a0b335",
100
+ "#537c44",
101
+ "#423c56",
102
+ "#596faf",
103
+ "#6bb9b6",
104
+ "#b8aab0",
105
+ "#79707e",
106
+ "#57627a",
107
+ "#945b28"
108
+ ],
109
+ "source": "extensions/adigunpolack-palettes/aap-radiantxv.gpl"
110
+ },
111
+ "aap-splendor128": {
112
+ "colors": [
113
+ "#050403",
114
+ "#0e0c0c",
115
+ "#2d1b1e",
116
+ "#612721",
117
+ "#b9451d",
118
+ "#f1641f",
119
+ "#fca570",
120
+ "#ffe0b7",
121
+ "#ffffff",
122
+ "#fff089",
123
+ "#f8c53a",
124
+ "#e88a36",
125
+ "#b05b2c",
126
+ "#673931",
127
+ "#271f1b",
128
+ "#4c3d2e",
129
+ "#855f39",
130
+ "#d39741",
131
+ "#f8f644",
132
+ "#d5dc1d",
133
+ "#adb834",
134
+ "#7f8e44",
135
+ "#586335",
136
+ "#333c24",
137
+ "#181c19",
138
+ "#293f21",
139
+ "#477238",
140
+ "#61a53f",
141
+ "#8fd032",
142
+ "#c4f129",
143
+ "#d0ffea",
144
+ "#97edca",
145
+ "#59cf93",
146
+ "#42a459",
147
+ "#3d6f43",
148
+ "#27412d",
149
+ "#14121d",
150
+ "#1b2447",
151
+ "#2b4e95",
152
+ "#2789cd",
153
+ "#42bfe8",
154
+ "#73efe8",
155
+ "#f1f2ff",
156
+ "#c9d4fd",
157
+ "#8aa1f6",
158
+ "#4572e3",
159
+ "#494182",
160
+ "#7864c6",
161
+ "#9c8bdb",
162
+ "#ceaaed",
163
+ "#fad6ff",
164
+ "#eeb59c",
165
+ "#d480bb",
166
+ "#9052bc",
167
+ "#171516",
168
+ "#373334",
169
+ "#695b59",
170
+ "#b28b78",
171
+ "#e2b27e",
172
+ "#f6d896",
173
+ "#fcf7be",
174
+ "#ecebe7",
175
+ "#cbc6c1",
176
+ "#a69e9a",
177
+ "#807b7a",
178
+ "#595757",
179
+ "#323232",
180
+ "#4f342f",
181
+ "#8c5b3e",
182
+ "#c68556",
183
+ "#d6a851",
184
+ "#b47538",
185
+ "#724b2c",
186
+ "#452a1b",
187
+ "#61683a",
188
+ "#939446",
189
+ "#c6b858",
190
+ "#efdd91",
191
+ "#b5e7cb",
192
+ "#86c69a",
193
+ "#5d9b79",
194
+ "#486859",
195
+ "#2c3b39",
196
+ "#171819",
197
+ "#2c3438",
198
+ "#465456",
199
+ "#64878c",
200
+ "#8ac4c3",
201
+ "#afe9df",
202
+ "#dceaee",
203
+ "#b8ccd8",
204
+ "#88a3bc",
205
+ "#5e718e",
206
+ "#485262",
207
+ "#282c3c",
208
+ "#464762",
209
+ "#696682",
210
+ "#9a97b9",
211
+ "#c5c7dd",
212
+ "#e6e7f0",
213
+ "#eee6ea",
214
+ "#e3cddf",
215
+ "#bfa5c9",
216
+ "#87738f",
217
+ "#564f5b",
218
+ "#322f35",
219
+ "#36282b",
220
+ "#654956",
221
+ "#966888",
222
+ "#c090a9",
223
+ "#d4b8b8",
224
+ "#eae0dd",
225
+ "#f1ebdb",
226
+ "#ddcebf",
227
+ "#bda499",
228
+ "#886e6a",
229
+ "#594d4d",
230
+ "#33272a",
231
+ "#b29476",
232
+ "#e1bf89",
233
+ "#f8e398",
234
+ "#ffe9e3",
235
+ "#fdc9c9",
236
+ "#f6a2a8",
237
+ "#e27285",
238
+ "#b25266",
239
+ "#64364b",
240
+ "#2a1e23"
241
+ ],
242
+ "source": "extensions/adigunpolack-palettes/aap-splendor128.gpl"
243
+ },
244
+ "simplejpc-16": {
245
+ "colors": [
246
+ "#050403",
247
+ "#221f31",
248
+ "#543516",
249
+ "#9b6e2d",
250
+ "#e1b047",
251
+ "#f5ee9b",
252
+ "#fefefe",
253
+ "#8be1e0",
254
+ "#7cc264",
255
+ "#678fcb",
256
+ "#316f23",
257
+ "#404a68",
258
+ "#a14d3f",
259
+ "#a568d4",
260
+ "#9a93b7",
261
+ "#ea9182"
262
+ ],
263
+ "source": "extensions/adigunpolack-palettes/simplejpc-16.gpl"
264
+ },
265
+ "a64": {
266
+ "colors": [
267
+ "#000000",
268
+ "#313a91",
269
+ "#4c3435",
270
+ "#b14863",
271
+ "#485454",
272
+ "#7655a2",
273
+ "#92562b",
274
+ "#8385cf",
275
+ "#808078",
276
+ "#509450",
277
+ "#cd9373",
278
+ "#8fbfd5",
279
+ "#9cabb1",
280
+ "#bbc840",
281
+ "#9ccc47",
282
+ "#ede6c8"
283
+ ],
284
+ "source": "extensions/arne-palettes/a64.gpl"
285
+ },
286
+ "arne16": {
287
+ "colors": [
288
+ "#000000",
289
+ "#9d9d9d",
290
+ "#ffffff",
291
+ "#be2633",
292
+ "#e06f8b",
293
+ "#493c2b",
294
+ "#a46422",
295
+ "#eb8931",
296
+ "#f7e26b",
297
+ "#2f484e",
298
+ "#44891a",
299
+ "#a3ce27",
300
+ "#1b2632",
301
+ "#005784",
302
+ "#31a2f2",
303
+ "#b2dcef"
304
+ ],
305
+ "source": "extensions/arne-palettes/arne16.gpl"
306
+ },
307
+ "arne32": {
308
+ "colors": [
309
+ "#000000",
310
+ "#9d9d9d",
311
+ "#ffffff",
312
+ "#be2633",
313
+ "#e06f8b",
314
+ "#493c2b",
315
+ "#a46422",
316
+ "#eb8931",
317
+ "#f7e26b",
318
+ "#2f484e",
319
+ "#44891a",
320
+ "#a3ce27",
321
+ "#1b2632",
322
+ "#005784",
323
+ "#31a2f2",
324
+ "#b2dcef",
325
+ "#342a97",
326
+ "#656d71",
327
+ "#cccccc",
328
+ "#732930",
329
+ "#cb43a7",
330
+ "#524f40",
331
+ "#ad9d33",
332
+ "#ec4700",
333
+ "#fab40b",
334
+ "#115e33",
335
+ "#14807e",
336
+ "#15c2a5",
337
+ "#225af6",
338
+ "#9964f9",
339
+ "#f78ed6",
340
+ "#f4b990"
341
+ ],
342
+ "source": "extensions/arne-palettes/arne32.gpl"
343
+ },
344
+ "cg-arne": {
345
+ "colors": [
346
+ "#000000",
347
+ "#2234d1",
348
+ "#0c7e45",
349
+ "#44aacc",
350
+ "#8a3622",
351
+ "#5c2e78",
352
+ "#aa5c3d",
353
+ "#b5b5b5",
354
+ "#5e606e",
355
+ "#4c81fb",
356
+ "#6cd947",
357
+ "#7be2f9",
358
+ "#eb8a60",
359
+ "#e23d69",
360
+ "#ffd93f",
361
+ "#ffffff"
362
+ ],
363
+ "source": "extensions/arne-palettes/cg-arne.gpl"
364
+ },
365
+ "copper-tech": {
366
+ "colors": [
367
+ "#262144",
368
+ "#1651dd",
369
+ "#898989",
370
+ "#355278",
371
+ "#60748a",
372
+ "#91d9f3",
373
+ "#5aa8b2",
374
+ "#6ea92c",
375
+ "#bfb588",
376
+ "#f4cd72",
377
+ "#c58843",
378
+ "#9e5b47",
379
+ "#dc392d",
380
+ "#5f4351",
381
+ "#ffffff",
382
+ "#000000"
383
+ ],
384
+ "source": "extensions/arne-palettes/copper-tech.gpl"
385
+ },
386
+ "cpc-boy": {
387
+ "colors": [
388
+ "#000000",
389
+ "#1b1b76",
390
+ "#3636d8",
391
+ "#761f28",
392
+ "#623870",
393
+ "#953ea7",
394
+ "#cc3636",
395
+ "#ce4b7a",
396
+ "#e3669a",
397
+ "#1b761b",
398
+ "#197f96",
399
+ "#1986f2",
400
+ "#8c6e1a",
401
+ "#8e8e8e",
402
+ "#9c9ee7",
403
+ "#e48e2a",
404
+ "#eaa597",
405
+ "#fe80fe",
406
+ "#54bf47",
407
+ "#37c79f",
408
+ "#35cfe4",
409
+ "#8dd836",
410
+ "#b8d1b5",
411
+ "#97e9d1",
412
+ "#edd446",
413
+ "#ebe4a4",
414
+ "#ffffff",
415
+ "#f2efe7",
416
+ "#bac375",
417
+ "#859550",
418
+ "#485d48",
419
+ "#293941"
420
+ ],
421
+ "source": "extensions/arne-palettes/cpc-boy.gpl"
422
+ },
423
+ "eroge-copper": {
424
+ "colors": [
425
+ "#7d3840",
426
+ "#0d080d",
427
+ "#2a2349",
428
+ "#4180a0",
429
+ "#32535f",
430
+ "#74adbb",
431
+ "#7bb24e",
432
+ "#fff9e4",
433
+ "#bebbb2",
434
+ "#fbdf9b",
435
+ "#f0bd77",
436
+ "#c59154",
437
+ "#825b31",
438
+ "#e89973",
439
+ "#c16c5b",
440
+ "#4f2b24"
441
+ ],
442
+ "source": "extensions/arne-palettes/eroge-copper.gpl"
443
+ },
444
+ "jmp": {
445
+ "colors": [
446
+ "#000000",
447
+ "#191028",
448
+ "#46af45",
449
+ "#a1d685",
450
+ "#453e78",
451
+ "#7664fe",
452
+ "#833129",
453
+ "#9ec2e8",
454
+ "#dc534b",
455
+ "#e18d79",
456
+ "#d6b97b",
457
+ "#e9d8a1",
458
+ "#216c4b",
459
+ "#d365c8",
460
+ "#afaab9",
461
+ "#f5f4eb"
462
+ ],
463
+ "source": "extensions/arne-palettes/jmp.gpl"
464
+ },
465
+ "psygnosia": {
466
+ "colors": [
467
+ "#a2324e",
468
+ "#443f41",
469
+ "#1b1e29",
470
+ "#362747",
471
+ "#64647c",
472
+ "#516cbf",
473
+ "#cbe8f7",
474
+ "#9ea4a7",
475
+ "#003308",
476
+ "#084a3c",
477
+ "#546a00",
478
+ "#52524c",
479
+ "#736150",
480
+ "#77785b",
481
+ "#e08b79",
482
+ "#000000"
483
+ ],
484
+ "source": "extensions/arne-palettes/psygnosia.gpl"
485
+ },
486
+ "matriax8c": {
487
+ "colors": [
488
+ "#f0f0dc",
489
+ "#fac800",
490
+ "#10c840",
491
+ "#00a0c8",
492
+ "#d24040",
493
+ "#a06e46",
494
+ "#736464",
495
+ "#101820"
496
+ ],
497
+ "source": "extensions/davitmasia-palettes/matriax8c.gpl"
498
+ },
499
+ "db16": {
500
+ "colors": [
501
+ "#140c1c",
502
+ "#442434",
503
+ "#30346d",
504
+ "#4e4a4e",
505
+ "#854c30",
506
+ "#346524",
507
+ "#d04648",
508
+ "#757161",
509
+ "#597dce",
510
+ "#d27d2c",
511
+ "#8595a1",
512
+ "#6daa2c",
513
+ "#d2aa99",
514
+ "#6dc2ca",
515
+ "#dad45e",
516
+ "#deeed6"
517
+ ],
518
+ "source": "extensions/dawnbringer-palettes/db16.gpl"
519
+ },
520
+ "db32": {
521
+ "colors": [
522
+ "#000000",
523
+ "#222034",
524
+ "#45283c",
525
+ "#663931",
526
+ "#8f563b",
527
+ "#df7126",
528
+ "#d9a066",
529
+ "#eec39a",
530
+ "#fbf236",
531
+ "#99e550",
532
+ "#6abe30",
533
+ "#37946e",
534
+ "#4b692f",
535
+ "#524b24",
536
+ "#323c39",
537
+ "#3f3f74",
538
+ "#306082",
539
+ "#5b6ee1",
540
+ "#639bff",
541
+ "#5fcde4",
542
+ "#cbdbfc",
543
+ "#ffffff",
544
+ "#9badb7",
545
+ "#847e87",
546
+ "#696a6a",
547
+ "#595652",
548
+ "#76428a",
549
+ "#ac3232",
550
+ "#d95763",
551
+ "#d77bba",
552
+ "#8f974a",
553
+ "#8a6f30"
554
+ ],
555
+ "source": "extensions/dawnbringer-palettes/db32.gpl"
556
+ },
557
+ "arq16": {
558
+ "colors": [
559
+ "#ffffff",
560
+ "#ffd19d",
561
+ "#aeb5bd",
562
+ "#4d80c9",
563
+ "#054494",
564
+ "#511e43",
565
+ "#100820",
566
+ "#823e2c",
567
+ "#e93841",
568
+ "#f1892d",
569
+ "#ffe947",
570
+ "#ffa9a9",
571
+ "#eb6c82",
572
+ "#7d3ebf",
573
+ "#1e8a4c",
574
+ "#5ae150"
575
+ ],
576
+ "source": "extensions/endesga-palettes/arq16.gpl"
577
+ },
578
+ "arq4": {
579
+ "colors": [
580
+ "#ffffff",
581
+ "#6772a9",
582
+ "#3a3277",
583
+ "#000000"
584
+ ],
585
+ "source": "extensions/endesga-palettes/arq4.gpl"
586
+ },
587
+ "edg16": {
588
+ "colors": [
589
+ "#e4a672",
590
+ "#b86f50",
591
+ "#743f39",
592
+ "#3f2832",
593
+ "#9e2835",
594
+ "#e53b44",
595
+ "#fb922b",
596
+ "#ffe762",
597
+ "#63c64d",
598
+ "#327345",
599
+ "#193d3f",
600
+ "#4f6781",
601
+ "#afbfd2",
602
+ "#ffffff",
603
+ "#2ce8f4",
604
+ "#0484d1"
605
+ ],
606
+ "source": "extensions/endesga-palettes/edg16.gpl"
607
+ },
608
+ "edg32": {
609
+ "colors": [
610
+ "#be4a2f",
611
+ "#d87644",
612
+ "#ead4aa",
613
+ "#e4a672",
614
+ "#b86f50",
615
+ "#743f39",
616
+ "#3f2832",
617
+ "#9e2835",
618
+ "#e43b44",
619
+ "#f77622",
620
+ "#feae34",
621
+ "#fee761",
622
+ "#63c74d",
623
+ "#3e8948",
624
+ "#265c42",
625
+ "#193c3e",
626
+ "#124e89",
627
+ "#0095e9",
628
+ "#2ce8f5",
629
+ "#ffffff",
630
+ "#c0cbdc",
631
+ "#8b9bb4",
632
+ "#5a6988",
633
+ "#3a4466",
634
+ "#262b44",
635
+ "#ff0044",
636
+ "#181425",
637
+ "#68386c",
638
+ "#b55088",
639
+ "#f6757a",
640
+ "#e8b796",
641
+ "#c28569"
642
+ ],
643
+ "source": "extensions/endesga-palettes/edg32.gpl"
644
+ },
645
+ "edg8": {
646
+ "colors": [
647
+ "#fdfdf8",
648
+ "#d32734",
649
+ "#da7d22",
650
+ "#e6da29",
651
+ "#28c641",
652
+ "#2d93dd",
653
+ "#7b53ad",
654
+ "#1b1c33"
655
+ ],
656
+ "source": "extensions/endesga-palettes/edg8.gpl"
657
+ },
658
+ "en4": {
659
+ "colors": [
660
+ "#fbf7f3",
661
+ "#e5b083",
662
+ "#426e5d",
663
+ "#20283d"
664
+ ],
665
+ "source": "extensions/endesga-palettes/en4.gpl"
666
+ },
667
+ "enos16": {
668
+ "colors": [
669
+ "#fafafa",
670
+ "#d4d4d4",
671
+ "#9d9d9d",
672
+ "#4b4b4b",
673
+ "#f9d381",
674
+ "#eaaf4d",
675
+ "#f9938a",
676
+ "#e75952",
677
+ "#9ad1f9",
678
+ "#58aeee",
679
+ "#8deda7",
680
+ "#44c55b",
681
+ "#c3a7e1",
682
+ "#9569c8",
683
+ "#bab5aa",
684
+ "#948e82"
685
+ ],
686
+ "source": "extensions/endesga-palettes/enos16.gpl"
687
+ },
688
+ "hept32": {
689
+ "colors": [
690
+ "#000000",
691
+ "#180d2f",
692
+ "#353658",
693
+ "#686b72",
694
+ "#8b97b6",
695
+ "#c5cddb",
696
+ "#ffffff",
697
+ "#5ee9e9",
698
+ "#2890dc",
699
+ "#1831a7",
700
+ "#053239",
701
+ "#005f41",
702
+ "#08b23b",
703
+ "#47f641",
704
+ "#e8ff75",
705
+ "#fbbe82",
706
+ "#de9751",
707
+ "#b66831",
708
+ "#8a4926",
709
+ "#461c14",
710
+ "#1e090d",
711
+ "#720d0d",
712
+ "#813704",
713
+ "#da2424",
714
+ "#ef6e10",
715
+ "#ecab11",
716
+ "#ece910",
717
+ "#f78d8d",
718
+ "#f94e6d",
719
+ "#c12458",
720
+ "#841252",
721
+ "#3d083b"
722
+ ],
723
+ "source": "extensions/endesga-palettes/hept32.gpl"
724
+ },
725
+ "apple-ii": {
726
+ "colors": [
727
+ "#000000",
728
+ "#6c2940",
729
+ "#403578",
730
+ "#d93cf0",
731
+ "#135740",
732
+ "#808080",
733
+ "#2697f0",
734
+ "#bfb4f8",
735
+ "#404b07",
736
+ "#d9680f",
737
+ "#808080",
738
+ "#eca8bf",
739
+ "#26c30f",
740
+ "#bfca87",
741
+ "#93d6bf",
742
+ "#ffffff"
743
+ ],
744
+ "source": "extensions/hardware-palettes/apple-ii.gpl"
745
+ },
746
+ "atari2600-ntsc": {
747
+ "colors": [
748
+ "#000000",
749
+ "#444400",
750
+ "#702800",
751
+ "#841800",
752
+ "#880000",
753
+ "#78005c",
754
+ "#480078",
755
+ "#140084",
756
+ "#000088",
757
+ "#00187c",
758
+ "#002c5c",
759
+ "#00402c",
760
+ "#003c00",
761
+ "#143800",
762
+ "#2c3000",
763
+ "#442800",
764
+ "#404040",
765
+ "#646410",
766
+ "#844414",
767
+ "#983418",
768
+ "#9c2020",
769
+ "#8c2074",
770
+ "#602090",
771
+ "#302098",
772
+ "#1c209c",
773
+ "#1c3890",
774
+ "#1c4c78",
775
+ "#1c5c48",
776
+ "#205c20",
777
+ "#345c1c",
778
+ "#4c501c",
779
+ "#644818",
780
+ "#6c6c6c",
781
+ "#848424",
782
+ "#985c28",
783
+ "#ac5030",
784
+ "#b03c3c",
785
+ "#a03c88",
786
+ "#783ca4",
787
+ "#4c3cac",
788
+ "#3840b0",
789
+ "#3854a8",
790
+ "#386890",
791
+ "#387c64",
792
+ "#407c40",
793
+ "#507c38",
794
+ "#687034",
795
+ "#846830",
796
+ "#909090",
797
+ "#a0a034",
798
+ "#ac783c",
799
+ "#c06848",
800
+ "#c05858",
801
+ "#b0589c",
802
+ "#8c58b8",
803
+ "#6858c0",
804
+ "#505cc0",
805
+ "#5070bc",
806
+ "#5084ac",
807
+ "#509c80",
808
+ "#5c9c5c",
809
+ "#6c9850",
810
+ "#848c4c",
811
+ "#a08444",
812
+ "#b0b0b0",
813
+ "#b8b840",
814
+ "#bc8c4c",
815
+ "#d0805c",
816
+ "#d07070",
817
+ "#c070b0",
818
+ "#a070cc",
819
+ "#7c70d0",
820
+ "#6874d0",
821
+ "#6888cc",
822
+ "#689cc0",
823
+ "#68b494",
824
+ "#74b474",
825
+ "#84b468",
826
+ "#9ca864",
827
+ "#b89c58",
828
+ "#c8c8c8",
829
+ "#d0d050",
830
+ "#cca05c",
831
+ "#e09470",
832
+ "#e08888",
833
+ "#d084c0",
834
+ "#b484dc",
835
+ "#9488e0",
836
+ "#7c8ce0",
837
+ "#7c9cdc",
838
+ "#7cb4d4",
839
+ "#7cd0ac",
840
+ "#8cd08c",
841
+ "#9ccc7c",
842
+ "#b4c078",
843
+ "#d0b46c",
844
+ "#dcdcdc",
845
+ "#e8e85c",
846
+ "#dcb468",
847
+ "#eca880",
848
+ "#eca0a0",
849
+ "#dc9cd0",
850
+ "#c49cec",
851
+ "#a8a0ec",
852
+ "#90a4ec",
853
+ "#90b4ec",
854
+ "#90cce8",
855
+ "#90e4c0",
856
+ "#a4e4a4",
857
+ "#b4e490",
858
+ "#ccd488",
859
+ "#e8cc7c",
860
+ "#ececec",
861
+ "#fcfc68",
862
+ "#ecc878",
863
+ "#fcbc94",
864
+ "#fcb4b4",
865
+ "#ecb0e0",
866
+ "#d4b0fc",
867
+ "#bcb4fc",
868
+ "#a4b8fc",
869
+ "#a4c8fc",
870
+ "#a4e0fc",
871
+ "#a4fcd4",
872
+ "#b8fcb8",
873
+ "#c8fca4",
874
+ "#e0ec9c",
875
+ "#fce08c",
876
+ "#000000",
877
+ "#000000",
878
+ "#000000",
879
+ "#000000",
880
+ "#000000",
881
+ "#000000",
882
+ "#000000",
883
+ "#000000",
884
+ "#000000",
885
+ "#000000",
886
+ "#000000",
887
+ "#000000",
888
+ "#000000",
889
+ "#000000",
890
+ "#000000",
891
+ "#000000",
892
+ "#000000",
893
+ "#000000",
894
+ "#000000",
895
+ "#000000",
896
+ "#000000",
897
+ "#000000",
898
+ "#000000",
899
+ "#000000",
900
+ "#000000",
901
+ "#000000",
902
+ "#000000",
903
+ "#000000",
904
+ "#000000",
905
+ "#000000",
906
+ "#000000",
907
+ "#000000",
908
+ "#000000",
909
+ "#000000",
910
+ "#000000",
911
+ "#000000",
912
+ "#000000",
913
+ "#000000",
914
+ "#000000",
915
+ "#000000",
916
+ "#000000",
917
+ "#000000",
918
+ "#000000",
919
+ "#000000",
920
+ "#000000",
921
+ "#000000",
922
+ "#000000",
923
+ "#000000",
924
+ "#000000",
925
+ "#000000",
926
+ "#000000",
927
+ "#000000",
928
+ "#000000",
929
+ "#000000",
930
+ "#000000",
931
+ "#000000",
932
+ "#000000",
933
+ "#000000",
934
+ "#000000",
935
+ "#000000",
936
+ "#000000",
937
+ "#000000",
938
+ "#000000",
939
+ "#000000",
940
+ "#000000",
941
+ "#000000",
942
+ "#000000",
943
+ "#000000",
944
+ "#000000",
945
+ "#000000",
946
+ "#000000",
947
+ "#000000",
948
+ "#000000",
949
+ "#000000",
950
+ "#000000",
951
+ "#000000",
952
+ "#000000",
953
+ "#000000",
954
+ "#000000",
955
+ "#000000",
956
+ "#000000",
957
+ "#000000",
958
+ "#000000",
959
+ "#000000",
960
+ "#000000",
961
+ "#000000",
962
+ "#000000",
963
+ "#000000",
964
+ "#000000",
965
+ "#000000",
966
+ "#000000",
967
+ "#000000",
968
+ "#000000",
969
+ "#000000",
970
+ "#000000",
971
+ "#000000",
972
+ "#000000",
973
+ "#000000",
974
+ "#000000",
975
+ "#000000",
976
+ "#000000",
977
+ "#000000",
978
+ "#000000",
979
+ "#000000",
980
+ "#000000",
981
+ "#000000",
982
+ "#000000",
983
+ "#000000",
984
+ "#000000",
985
+ "#000000",
986
+ "#000000",
987
+ "#000000",
988
+ "#000000",
989
+ "#000000",
990
+ "#000000",
991
+ "#000000",
992
+ "#000000",
993
+ "#000000",
994
+ "#000000",
995
+ "#000000",
996
+ "#000000",
997
+ "#000000",
998
+ "#000000",
999
+ "#000000",
1000
+ "#000000",
1001
+ "#000000",
1002
+ "#000000",
1003
+ "#ffffff"
1004
+ ],
1005
+ "source": "extensions/hardware-palettes/atari2600-ntsc.gpl"
1006
+ },
1007
+ "atari2600-pal": {
1008
+ "colors": [
1009
+ "#000000",
1010
+ "#000000",
1011
+ "#805800",
1012
+ "#445c00",
1013
+ "#703400",
1014
+ "#006414",
1015
+ "#700014",
1016
+ "#005c5c",
1017
+ "#70005c",
1018
+ "#003c70",
1019
+ "#580070",
1020
+ "#002070",
1021
+ "#3c0080",
1022
+ "#000088",
1023
+ "#000000",
1024
+ "#000000",
1025
+ "#404040",
1026
+ "#404040",
1027
+ "#947020",
1028
+ "#5c7820",
1029
+ "#885020",
1030
+ "#208034",
1031
+ "#882034",
1032
+ "#207474",
1033
+ "#842074",
1034
+ "#1c5888",
1035
+ "#6c2088",
1036
+ "#1c3c88",
1037
+ "#542094",
1038
+ "#20209c",
1039
+ "#404040",
1040
+ "#404040",
1041
+ "#6c6c6c",
1042
+ "#6c6c6c",
1043
+ "#a8843c",
1044
+ "#74903c",
1045
+ "#a0683c",
1046
+ "#3c9850",
1047
+ "#a03c50",
1048
+ "#3c8c8c",
1049
+ "#943c88",
1050
+ "#3874a0",
1051
+ "#803ca0",
1052
+ "#3858a0",
1053
+ "#6c3ca8",
1054
+ "#3c3cb0",
1055
+ "#6c6c6c",
1056
+ "#6c6c6c",
1057
+ "#909090",
1058
+ "#909090",
1059
+ "#bc9c58",
1060
+ "#8cac58",
1061
+ "#b48458",
1062
+ "#58b06c",
1063
+ "#b4586c",
1064
+ "#58a4a4",
1065
+ "#a8589c",
1066
+ "#508cb4",
1067
+ "#9458b4",
1068
+ "#5074b4",
1069
+ "#8058bc",
1070
+ "#5858c0",
1071
+ "#909090",
1072
+ "#909090",
1073
+ "#b0b0b0",
1074
+ "#b0b0b0",
1075
+ "#ccac70",
1076
+ "#a0c070",
1077
+ "#c89870",
1078
+ "#70c484",
1079
+ "#c87084",
1080
+ "#70b8b8",
1081
+ "#b470b0",
1082
+ "#68a4c8",
1083
+ "#a470c8",
1084
+ "#6888c8",
1085
+ "#9470cc",
1086
+ "#7070d0",
1087
+ "#b0b0b0",
1088
+ "#b0b0b0",
1089
+ "#c8c8c8",
1090
+ "#c8c8c8",
1091
+ "#dcc084",
1092
+ "#b0d484",
1093
+ "#dcac84",
1094
+ "#84d89c",
1095
+ "#dc849c",
1096
+ "#84c8c8",
1097
+ "#c484c0",
1098
+ "#7cb8dc",
1099
+ "#b484dc",
1100
+ "#7ca0dc",
1101
+ "#a884dc",
1102
+ "#8484e0",
1103
+ "#c8c8c8",
1104
+ "#c8c8c8",
1105
+ "#dcdcdc",
1106
+ "#dcdcdc",
1107
+ "#ecd09c",
1108
+ "#c0e89c",
1109
+ "#ecc09c",
1110
+ "#9ce8b4",
1111
+ "#ec9cb4",
1112
+ "#9cdcdc",
1113
+ "#d09cd0",
1114
+ "#90ccec",
1115
+ "#c49cec",
1116
+ "#90b4ec",
1117
+ "#b89cec",
1118
+ "#9c9cec",
1119
+ "#dcdcdc",
1120
+ "#dcdcdc",
1121
+ "#ececec",
1122
+ "#ececec",
1123
+ "#fce0b0",
1124
+ "#d4fcb0",
1125
+ "#fcd4b0",
1126
+ "#b0fcc8",
1127
+ "#fcb0c8",
1128
+ "#b0ecec",
1129
+ "#e0b0e0",
1130
+ "#a4e0fc",
1131
+ "#d4b0fc",
1132
+ "#a4c8fc",
1133
+ "#c8b0fc",
1134
+ "#b0b0fc",
1135
+ "#ececec",
1136
+ "#ececec"
1137
+ ],
1138
+ "source": "extensions/hardware-palettes/atari2600-pal.gpl"
1139
+ },
1140
+ "cga": {
1141
+ "colors": [
1142
+ "#000000",
1143
+ "#0000aa",
1144
+ "#00aa00",
1145
+ "#00aaaa",
1146
+ "#aa0000",
1147
+ "#aa00aa",
1148
+ "#aa5500",
1149
+ "#aaaaaa",
1150
+ "#555555",
1151
+ "#5555ff",
1152
+ "#55ff55",
1153
+ "#55ffff",
1154
+ "#ff5555",
1155
+ "#ff55ff",
1156
+ "#ffff55",
1157
+ "#ffffff"
1158
+ ],
1159
+ "source": "extensions/hardware-palettes/cga.gpl"
1160
+ },
1161
+ "cga0": {
1162
+ "colors": [
1163
+ "#000000",
1164
+ "#00aa00",
1165
+ "#aa0000",
1166
+ "#aa5500"
1167
+ ],
1168
+ "source": "extensions/hardware-palettes/cga0.gpl"
1169
+ },
1170
+ "cga0hi": {
1171
+ "colors": [
1172
+ "#000000",
1173
+ "#55ff55",
1174
+ "#ff5555",
1175
+ "#ffff55"
1176
+ ],
1177
+ "source": "extensions/hardware-palettes/cga0hi.gpl"
1178
+ },
1179
+ "cga1": {
1180
+ "colors": [
1181
+ "#000000",
1182
+ "#00aaaa",
1183
+ "#aa00aa",
1184
+ "#aaaaaa"
1185
+ ],
1186
+ "source": "extensions/hardware-palettes/cga1.gpl"
1187
+ },
1188
+ "cga1hi": {
1189
+ "colors": [
1190
+ "#000000",
1191
+ "#55ffff",
1192
+ "#ff55ff",
1193
+ "#ffffff"
1194
+ ],
1195
+ "source": "extensions/hardware-palettes/cga1hi.gpl"
1196
+ },
1197
+ "cga3rd": {
1198
+ "colors": [
1199
+ "#000000",
1200
+ "#00aaaa",
1201
+ "#aa0000",
1202
+ "#aaaaaa"
1203
+ ],
1204
+ "source": "extensions/hardware-palettes/cga3rd.gpl"
1205
+ },
1206
+ "cga3rdhi": {
1207
+ "colors": [
1208
+ "#000000",
1209
+ "#55ffff",
1210
+ "#ff5555",
1211
+ "#ffffff"
1212
+ ],
1213
+ "source": "extensions/hardware-palettes/cga3rdhi.gpl"
1214
+ },
1215
+ "commodore-plus4": {
1216
+ "colors": [
1217
+ "#000000",
1218
+ "#202020",
1219
+ "#5d0800",
1220
+ "#003746",
1221
+ "#5d006d",
1222
+ "#004e00",
1223
+ "#20116d",
1224
+ "#202f00",
1225
+ "#5d1000",
1226
+ "#3e1f00",
1227
+ "#013e00",
1228
+ "#5d0120",
1229
+ "#003f20",
1230
+ "#00306d",
1231
+ "#3e016d",
1232
+ "#004600",
1233
+ "#000000",
1234
+ "#404040",
1235
+ "#7d2819",
1236
+ "#035766",
1237
+ "#7d128d",
1238
+ "#036e00",
1239
+ "#40318d",
1240
+ "#404f00",
1241
+ "#7d3000",
1242
+ "#5e3f00",
1243
+ "#215e00",
1244
+ "#7d2140",
1245
+ "#035f40",
1246
+ "#03508d",
1247
+ "#5e218d",
1248
+ "#036619",
1249
+ "#000000",
1250
+ "#606060",
1251
+ "#9c4839",
1252
+ "#237786",
1253
+ "#9c32ac",
1254
+ "#238e13",
1255
+ "#6051ac",
1256
+ "#606f13",
1257
+ "#9c5013",
1258
+ "#7e5f13",
1259
+ "#417e13",
1260
+ "#9c4160",
1261
+ "#237f60",
1262
+ "#2370ac",
1263
+ "#7e41ac",
1264
+ "#238639",
1265
+ "#000000",
1266
+ "#808080",
1267
+ "#bc6859",
1268
+ "#4397a6",
1269
+ "#bc52cc",
1270
+ "#43ad33",
1271
+ "#8071cc",
1272
+ "#808e33",
1273
+ "#bc6f33",
1274
+ "#9e7f33",
1275
+ "#619e33",
1276
+ "#bc6180",
1277
+ "#439e80",
1278
+ "#4390cc",
1279
+ "#9e61cc",
1280
+ "#43a659",
1281
+ "#000000",
1282
+ "#9f9f9f",
1283
+ "#dc8879",
1284
+ "#63b7c6",
1285
+ "#dc71ec",
1286
+ "#63cd53",
1287
+ "#9f90ec",
1288
+ "#9fae53",
1289
+ "#dc8f53",
1290
+ "#be9f53",
1291
+ "#81be53",
1292
+ "#dc809f",
1293
+ "#63be9f",
1294
+ "#63afec",
1295
+ "#be81ec",
1296
+ "#63c679",
1297
+ "#000000",
1298
+ "#bfbfbf",
1299
+ "#fca899",
1300
+ "#82d7e6",
1301
+ "#fc91ff",
1302
+ "#82ed72",
1303
+ "#bfb0ff",
1304
+ "#bfce72",
1305
+ "#fcaf72",
1306
+ "#debf72",
1307
+ "#a1de72",
1308
+ "#fca0bf",
1309
+ "#82debf",
1310
+ "#82cfff",
1311
+ "#dea1ff",
1312
+ "#82e699",
1313
+ "#000000",
1314
+ "#dfdfdf",
1315
+ "#ffc8b9",
1316
+ "#a2f7ff",
1317
+ "#ffb1ff",
1318
+ "#a2ff92",
1319
+ "#dfd0ff",
1320
+ "#dfee92",
1321
+ "#ffcf92",
1322
+ "#fedf92",
1323
+ "#c1fe92",
1324
+ "#ffc0df",
1325
+ "#a2fedf",
1326
+ "#a2efff",
1327
+ "#fec1ff",
1328
+ "#a2ffb9",
1329
+ "#000000",
1330
+ "#ffffff",
1331
+ "#ffe8d9",
1332
+ "#c2ffff",
1333
+ "#ffd1ff",
1334
+ "#c2ffb2",
1335
+ "#fff0ff",
1336
+ "#ffffb2",
1337
+ "#ffefb2",
1338
+ "#fffeb2",
1339
+ "#e1ffb2",
1340
+ "#ffe0ff",
1341
+ "#c2ffff",
1342
+ "#c2ffff",
1343
+ "#ffe1ff",
1344
+ "#c2ffd9"
1345
+ ],
1346
+ "source": "extensions/hardware-palettes/commodore-plus4.gpl"
1347
+ },
1348
+ "commodore-vic20": {
1349
+ "colors": [
1350
+ "#000000",
1351
+ "#ffffff",
1352
+ "#782922",
1353
+ "#87d6dd",
1354
+ "#aa5fb6",
1355
+ "#1a8226",
1356
+ "#40318d",
1357
+ "#bfce72",
1358
+ "#aa7449",
1359
+ "#eab489",
1360
+ "#b86962",
1361
+ "#c7ffff",
1362
+ "#ea9ff6",
1363
+ "#94e089",
1364
+ "#8071cc",
1365
+ "#ffffb2"
1366
+ ],
1367
+ "source": "extensions/hardware-palettes/commodore-vic20.gpl"
1368
+ },
1369
+ "commodore64": {
1370
+ "colors": [
1371
+ "#000000",
1372
+ "#ffffff",
1373
+ "#883932",
1374
+ "#67b6bd",
1375
+ "#8b3f96",
1376
+ "#55a049",
1377
+ "#40318d",
1378
+ "#bfce72",
1379
+ "#8b5429",
1380
+ "#574200",
1381
+ "#b86962",
1382
+ "#505050",
1383
+ "#787878",
1384
+ "#94e089",
1385
+ "#7869c4",
1386
+ "#9f9f9f"
1387
+ ],
1388
+ "source": "extensions/hardware-palettes/commodore64.gpl"
1389
+ },
1390
+ "cpc": {
1391
+ "colors": [
1392
+ "#000000",
1393
+ "#000080",
1394
+ "#0000ff",
1395
+ "#800000",
1396
+ "#800080",
1397
+ "#8000ff",
1398
+ "#ff0000",
1399
+ "#ff0080",
1400
+ "#ff00ff",
1401
+ "#008000",
1402
+ "#008080",
1403
+ "#0080ff",
1404
+ "#808000",
1405
+ "#808080",
1406
+ "#8080ff",
1407
+ "#ff8000",
1408
+ "#ff8080",
1409
+ "#ff80ff",
1410
+ "#00ff00",
1411
+ "#00ff80",
1412
+ "#00ffff",
1413
+ "#80ff00",
1414
+ "#80ff80",
1415
+ "#80ffff",
1416
+ "#ffff00",
1417
+ "#ffff80",
1418
+ "#ffffff"
1419
+ ],
1420
+ "source": "extensions/hardware-palettes/cpc.gpl"
1421
+ },
1422
+ "gameboy-color-type1": {
1423
+ "colors": [
1424
+ "#000000",
1425
+ "#000000",
1426
+ "#ffad63",
1427
+ "#833100",
1428
+ "#ffffff",
1429
+ "#f7c4a5",
1430
+ "#7bff30",
1431
+ "#008300",
1432
+ "#65a49b",
1433
+ "#0000fe",
1434
+ "#ff8584",
1435
+ "#943a3a",
1436
+ "#e60000",
1437
+ "#ffe7c5",
1438
+ "#ce9c85",
1439
+ "#846b29",
1440
+ "#5b315b",
1441
+ "#a56b31",
1442
+ "#64a5ff",
1443
+ "#8b8cde",
1444
+ "#53528c",
1445
+ "#a5a5a5",
1446
+ "#525252",
1447
+ "#949494",
1448
+ "#fe9494",
1449
+ "#9394fe",
1450
+ "#ffffa5",
1451
+ "#ff00fe",
1452
+ "#ffff00",
1453
+ "#fe0000",
1454
+ "#7d4900",
1455
+ "#ffff3a",
1456
+ "#3a2802",
1457
+ "#51ff00",
1458
+ "#ff4200",
1459
+ "#0163c6",
1460
+ "#008486",
1461
+ "#ffde00"
1462
+ ],
1463
+ "source": "extensions/hardware-palettes/gameboy-color-type1.gpl"
1464
+ },
1465
+ "gameboy": {
1466
+ "colors": [
1467
+ "#9bbc0f",
1468
+ "#8bac0f",
1469
+ "#306230",
1470
+ "#0f380f"
1471
+ ],
1472
+ "source": "extensions/hardware-palettes/gameboy.gpl"
1473
+ },
1474
+ "master-system": {
1475
+ "colors": [
1476
+ "#000000",
1477
+ "#550000",
1478
+ "#aa0000",
1479
+ "#ff0000",
1480
+ "#005500",
1481
+ "#555500",
1482
+ "#aa5500",
1483
+ "#ff5500",
1484
+ "#00aa00",
1485
+ "#55aa00",
1486
+ "#aaaa00",
1487
+ "#ffaa00",
1488
+ "#00ff00",
1489
+ "#55ff00",
1490
+ "#aaff00",
1491
+ "#ffff00",
1492
+ "#000055",
1493
+ "#550055",
1494
+ "#aa0055",
1495
+ "#ff0055",
1496
+ "#005555",
1497
+ "#555555",
1498
+ "#aa5555",
1499
+ "#ff5555",
1500
+ "#00aa55",
1501
+ "#55aa55",
1502
+ "#aaaa55",
1503
+ "#ffaa55",
1504
+ "#00ff55",
1505
+ "#55ff55",
1506
+ "#aaff55",
1507
+ "#ffff55",
1508
+ "#0000aa",
1509
+ "#5500aa",
1510
+ "#aa00aa",
1511
+ "#ff00aa",
1512
+ "#0055aa",
1513
+ "#5555aa",
1514
+ "#aa55aa",
1515
+ "#ff55aa",
1516
+ "#00aaaa",
1517
+ "#55aaaa",
1518
+ "#aaaaaa",
1519
+ "#ffaaaa",
1520
+ "#00ffaa",
1521
+ "#55ffaa",
1522
+ "#aaffaa",
1523
+ "#ffffaa",
1524
+ "#0000ff",
1525
+ "#5500ff",
1526
+ "#aa00ff",
1527
+ "#ff00ff",
1528
+ "#0055ff",
1529
+ "#5555ff",
1530
+ "#aa55ff",
1531
+ "#ff55ff",
1532
+ "#00aaff",
1533
+ "#55aaff",
1534
+ "#aaaaff",
1535
+ "#ffaaff",
1536
+ "#00ffff",
1537
+ "#55ffff",
1538
+ "#aaffff",
1539
+ "#ffffff"
1540
+ ],
1541
+ "source": "extensions/hardware-palettes/master-system.gpl"
1542
+ },
1543
+ "msx1": {
1544
+ "colors": [
1545
+ "#000000",
1546
+ "#010101",
1547
+ "#3eb849",
1548
+ "#74d07d",
1549
+ "#5955e0",
1550
+ "#8076f1",
1551
+ "#b95e51",
1552
+ "#65dbef",
1553
+ "#db6559",
1554
+ "#ff897d",
1555
+ "#ccc35e",
1556
+ "#ded087",
1557
+ "#3aa241",
1558
+ "#b766b5",
1559
+ "#cccccc",
1560
+ "#ffffff"
1561
+ ],
1562
+ "source": "extensions/hardware-palettes/msx1.gpl"
1563
+ },
1564
+ "msx2": {
1565
+ "colors": [
1566
+ "#000000",
1567
+ "#010101",
1568
+ "#24db24",
1569
+ "#6dff6d",
1570
+ "#2424ff",
1571
+ "#496dff",
1572
+ "#b62424",
1573
+ "#49dbff",
1574
+ "#ff2424",
1575
+ "#ff6d6d",
1576
+ "#dbdb24",
1577
+ "#dbdb92",
1578
+ "#249224",
1579
+ "#db49b6",
1580
+ "#b6b6b6",
1581
+ "#ffffff"
1582
+ ],
1583
+ "source": "extensions/hardware-palettes/msx2.gpl"
1584
+ },
1585
+ "nes-ntsc": {
1586
+ "colors": [
1587
+ "#feffff",
1588
+ "#feffff",
1589
+ "#a0a0a0",
1590
+ "#525252",
1591
+ "#bed6fd",
1592
+ "#699efc",
1593
+ "#1e4a9d",
1594
+ "#011a51",
1595
+ "#ccccff",
1596
+ "#8987ff",
1597
+ "#3837bc",
1598
+ "#0f0f65",
1599
+ "#ddc4ff",
1600
+ "#ae76ff",
1601
+ "#5828b8",
1602
+ "#230663",
1603
+ "#eac0f9",
1604
+ "#ce6df1",
1605
+ "#752194",
1606
+ "#36034b",
1607
+ "#f2c1df",
1608
+ "#e070b2",
1609
+ "#84235c",
1610
+ "#400426",
1611
+ "#f1c7c2",
1612
+ "#de7c70",
1613
+ "#822e24",
1614
+ "#3f0904",
1615
+ "#e8d0aa",
1616
+ "#c8913e",
1617
+ "#6f3f00",
1618
+ "#321300",
1619
+ "#d9da9d",
1620
+ "#a6a725",
1621
+ "#515200",
1622
+ "#1f2000",
1623
+ "#c9e29e",
1624
+ "#81ba28",
1625
+ "#316300",
1626
+ "#0b2a00",
1627
+ "#bce6ae",
1628
+ "#63c446",
1629
+ "#1a6b05",
1630
+ "#002f00",
1631
+ "#b4e5c7",
1632
+ "#54c17d",
1633
+ "#0e692e",
1634
+ "#002e0a",
1635
+ "#b5dfe4",
1636
+ "#56b3c0",
1637
+ "#105c68",
1638
+ "#00262d",
1639
+ "#a9a9a9",
1640
+ "#3c3c3c",
1641
+ "#000000",
1642
+ "#000000"
1643
+ ],
1644
+ "source": "extensions/hardware-palettes/nes-ntsc.gpl"
1645
+ },
1646
+ "nes": {
1647
+ "colors": [
1648
+ "#000000",
1649
+ "#000000",
1650
+ "#797979",
1651
+ "#a2a2a2",
1652
+ "#305182",
1653
+ "#4192c3",
1654
+ "#61d3e3",
1655
+ "#a2fff3",
1656
+ "#306141",
1657
+ "#49a269",
1658
+ "#71e392",
1659
+ "#a2ffcb",
1660
+ "#386d00",
1661
+ "#49aa10",
1662
+ "#71f341",
1663
+ "#a2f3a2",
1664
+ "#386900",
1665
+ "#51a200",
1666
+ "#9aeb00",
1667
+ "#cbf382",
1668
+ "#495900",
1669
+ "#8a8a00",
1670
+ "#ebd320",
1671
+ "#fff392",
1672
+ "#794100",
1673
+ "#c37100",
1674
+ "#ffa200",
1675
+ "#ffdba2",
1676
+ "#a23000",
1677
+ "#e35100",
1678
+ "#ff7930",
1679
+ "#ffcbba",
1680
+ "#b21030",
1681
+ "#db4161",
1682
+ "#ff61b2",
1683
+ "#ffbaeb",
1684
+ "#9a2079",
1685
+ "#db41c3",
1686
+ "#f361ff",
1687
+ "#e3b2ff",
1688
+ "#6110a2",
1689
+ "#9241f3",
1690
+ "#a271ff",
1691
+ "#c3b2ff",
1692
+ "#2800ba",
1693
+ "#4141ff",
1694
+ "#5182ff",
1695
+ "#a2baff",
1696
+ "#2000b2",
1697
+ "#4161fb",
1698
+ "#61a2ff",
1699
+ "#92d3ff",
1700
+ "#797979",
1701
+ "#b2b2b2",
1702
+ "#ebebeb",
1703
+ "#ffffff"
1704
+ ],
1705
+ "source": "extensions/hardware-palettes/nes.gpl"
1706
+ },
1707
+ "teletext": {
1708
+ "colors": [
1709
+ "#000000",
1710
+ "#0000ff",
1711
+ "#ff0000",
1712
+ "#ff00ff",
1713
+ "#00ff00",
1714
+ "#00ffff",
1715
+ "#ffff00",
1716
+ "#ffffff"
1717
+ ],
1718
+ "source": "extensions/hardware-palettes/teletext.gpl"
1719
+ },
1720
+ "vga-13h": {
1721
+ "colors": [
1722
+ "#000000",
1723
+ "#0000aa",
1724
+ "#00aa00",
1725
+ "#00aaaa",
1726
+ "#aa0000",
1727
+ "#aa00aa",
1728
+ "#aa5500",
1729
+ "#aaaaaa",
1730
+ "#555555",
1731
+ "#5555ff",
1732
+ "#55ff55",
1733
+ "#55ffff",
1734
+ "#ff5555",
1735
+ "#ff55ff",
1736
+ "#ffff55",
1737
+ "#ffffff",
1738
+ "#000000",
1739
+ "#101010",
1740
+ "#202020",
1741
+ "#353535",
1742
+ "#454545",
1743
+ "#555555",
1744
+ "#656565",
1745
+ "#757575",
1746
+ "#8a8a8a",
1747
+ "#9a9a9a",
1748
+ "#aaaaaa",
1749
+ "#bababa",
1750
+ "#cacaca",
1751
+ "#dfdfdf",
1752
+ "#efefef",
1753
+ "#ffffff",
1754
+ "#0000ff",
1755
+ "#4100ff",
1756
+ "#8200ff",
1757
+ "#be00ff",
1758
+ "#ff00ff",
1759
+ "#ff00be",
1760
+ "#ff0082",
1761
+ "#ff0041",
1762
+ "#ff0000",
1763
+ "#ff4100",
1764
+ "#ff8200",
1765
+ "#ffbe00",
1766
+ "#ffff00",
1767
+ "#beff00",
1768
+ "#82ff00",
1769
+ "#41ff00",
1770
+ "#00ff00",
1771
+ "#00ff41",
1772
+ "#00ff82",
1773
+ "#00ffbe",
1774
+ "#00ffff",
1775
+ "#00beff",
1776
+ "#0082ff",
1777
+ "#0041ff",
1778
+ "#8282ff",
1779
+ "#9e82ff",
1780
+ "#be82ff",
1781
+ "#df82ff",
1782
+ "#ff82ff",
1783
+ "#ff82df",
1784
+ "#ff82be",
1785
+ "#ff829e",
1786
+ "#ff8282",
1787
+ "#ff9e82",
1788
+ "#ffbe82",
1789
+ "#ffdf82",
1790
+ "#ffff82",
1791
+ "#dfff82",
1792
+ "#beff82",
1793
+ "#9eff82",
1794
+ "#82ff82",
1795
+ "#82ff9e",
1796
+ "#82ffbe",
1797
+ "#82ffdf",
1798
+ "#82ffff",
1799
+ "#82dfff",
1800
+ "#82beff",
1801
+ "#829eff",
1802
+ "#babaff",
1803
+ "#cabaff",
1804
+ "#dfbaff",
1805
+ "#efbaff",
1806
+ "#ffbaff",
1807
+ "#ffbaef",
1808
+ "#ffbadf",
1809
+ "#ffbaca",
1810
+ "#ffbaba",
1811
+ "#ffcaba",
1812
+ "#ffdfba",
1813
+ "#ffefba",
1814
+ "#ffffba",
1815
+ "#efffba",
1816
+ "#dfffba",
1817
+ "#caffba",
1818
+ "#baffba",
1819
+ "#baffca",
1820
+ "#baffdf",
1821
+ "#baffef",
1822
+ "#baffff",
1823
+ "#baefff",
1824
+ "#badfff",
1825
+ "#bacaff",
1826
+ "#000071",
1827
+ "#1c0071",
1828
+ "#390071",
1829
+ "#550071",
1830
+ "#710071",
1831
+ "#710055",
1832
+ "#710039",
1833
+ "#71001c",
1834
+ "#710000",
1835
+ "#711c00",
1836
+ "#713900",
1837
+ "#715500",
1838
+ "#717100",
1839
+ "#557100",
1840
+ "#397100",
1841
+ "#1c7100",
1842
+ "#007100",
1843
+ "#00711c",
1844
+ "#007139",
1845
+ "#007155",
1846
+ "#007171",
1847
+ "#005571",
1848
+ "#003971",
1849
+ "#001c71",
1850
+ "#393971",
1851
+ "#453971",
1852
+ "#553971",
1853
+ "#613971",
1854
+ "#713971",
1855
+ "#713961",
1856
+ "#713955",
1857
+ "#713945",
1858
+ "#713939",
1859
+ "#714539",
1860
+ "#715539",
1861
+ "#716139",
1862
+ "#717139",
1863
+ "#617139",
1864
+ "#557139",
1865
+ "#457139",
1866
+ "#397139",
1867
+ "#397145",
1868
+ "#397155",
1869
+ "#397161",
1870
+ "#397171",
1871
+ "#396171",
1872
+ "#395571",
1873
+ "#394571",
1874
+ "#515171",
1875
+ "#595171",
1876
+ "#615171",
1877
+ "#695171",
1878
+ "#715171",
1879
+ "#715169",
1880
+ "#715161",
1881
+ "#715159",
1882
+ "#715151",
1883
+ "#715951",
1884
+ "#716151",
1885
+ "#716951",
1886
+ "#717151",
1887
+ "#697151",
1888
+ "#617151",
1889
+ "#597151",
1890
+ "#517151",
1891
+ "#517159",
1892
+ "#517161",
1893
+ "#517169",
1894
+ "#517171",
1895
+ "#516971",
1896
+ "#516171",
1897
+ "#515971",
1898
+ "#000041",
1899
+ "#100041",
1900
+ "#200041",
1901
+ "#310041",
1902
+ "#410041",
1903
+ "#410031",
1904
+ "#410020",
1905
+ "#410010",
1906
+ "#410000",
1907
+ "#411000",
1908
+ "#412000",
1909
+ "#413100",
1910
+ "#414100",
1911
+ "#314100",
1912
+ "#204100",
1913
+ "#104100",
1914
+ "#004100",
1915
+ "#004110",
1916
+ "#004120",
1917
+ "#004131",
1918
+ "#004141",
1919
+ "#003141",
1920
+ "#002041",
1921
+ "#001041",
1922
+ "#202041",
1923
+ "#282041",
1924
+ "#312041",
1925
+ "#392041",
1926
+ "#412041",
1927
+ "#412039",
1928
+ "#412031",
1929
+ "#412028",
1930
+ "#412020",
1931
+ "#412820",
1932
+ "#413120",
1933
+ "#413920",
1934
+ "#414120",
1935
+ "#394120",
1936
+ "#314120",
1937
+ "#284120",
1938
+ "#204120",
1939
+ "#204128",
1940
+ "#204131",
1941
+ "#204139",
1942
+ "#204141",
1943
+ "#203941",
1944
+ "#203141",
1945
+ "#202841",
1946
+ "#2d2d41",
1947
+ "#312d41",
1948
+ "#352d41",
1949
+ "#3d2d41",
1950
+ "#412d41",
1951
+ "#412d3d",
1952
+ "#412d35",
1953
+ "#412d31",
1954
+ "#412d2d",
1955
+ "#41312d",
1956
+ "#41352d",
1957
+ "#413d2d",
1958
+ "#41412d",
1959
+ "#3d412d",
1960
+ "#35412d",
1961
+ "#31412d",
1962
+ "#2d412d",
1963
+ "#2d4131",
1964
+ "#2d4135",
1965
+ "#2d413d",
1966
+ "#2d4141",
1967
+ "#2d3d41",
1968
+ "#2d3541",
1969
+ "#2d3141",
1970
+ "#000000",
1971
+ "#000000",
1972
+ "#000000",
1973
+ "#000000",
1974
+ "#000000",
1975
+ "#000000",
1976
+ "#000000",
1977
+ "#000000"
1978
+ ],
1979
+ "source": "extensions/hardware-palettes/vga-13h.gpl"
1980
+ },
1981
+ "virtualboy": {
1982
+ "colors": [
1983
+ "#000000",
1984
+ "#550000",
1985
+ "#aa0000",
1986
+ "#ff0000"
1987
+ ],
1988
+ "source": "extensions/hardware-palettes/virtualboy.gpl"
1989
+ },
1990
+ "zx-spectrum": {
1991
+ "colors": [
1992
+ "#000000",
1993
+ "#0000c0",
1994
+ "#c00000",
1995
+ "#c000c0",
1996
+ "#00c000",
1997
+ "#00c0c0",
1998
+ "#c0c000",
1999
+ "#c0c0c0",
2000
+ "#000000",
2001
+ "#0000ff",
2002
+ "#ff0000",
2003
+ "#ff00ff",
2004
+ "#00ff00",
2005
+ "#00ffff",
2006
+ "#ffff00",
2007
+ "#ffffff"
2008
+ ],
2009
+ "source": "extensions/hardware-palettes/zx-spectrum.gpl"
2010
+ },
2011
+ "mail24": {
2012
+ "colors": [
2013
+ "#17111a",
2014
+ "#372538",
2015
+ "#7a213a",
2016
+ "#e14141",
2017
+ "#ffa070",
2018
+ "#c44d29",
2019
+ "#ffbf36",
2020
+ "#fff275",
2021
+ "#753939",
2022
+ "#cf7957",
2023
+ "#ffd1ab",
2024
+ "#39855a",
2025
+ "#83e04c",
2026
+ "#dcff70",
2027
+ "#243b61",
2028
+ "#3898ff",
2029
+ "#6eeeff",
2030
+ "#682b82",
2031
+ "#bf3fb3",
2032
+ "#ff80aa",
2033
+ "#3e375c",
2034
+ "#7884ab",
2035
+ "#b2bcc2",
2036
+ "#ffffff"
2037
+ ],
2038
+ "source": "extensions/hyohnoo-palettes/mail24.gpl"
2039
+ },
2040
+ "nyx8": {
2041
+ "colors": [
2042
+ "#08141e",
2043
+ "#0f2a3f",
2044
+ "#20394f",
2045
+ "#f6d6bd",
2046
+ "#c3a38a",
2047
+ "#997577",
2048
+ "#816271",
2049
+ "#4e495f"
2050
+ ],
2051
+ "source": "extensions/javierguerrero-palettes/nyx8.gpl"
2052
+ },
2053
+ "pico-8": {
2054
+ "colors": [
2055
+ "#000000",
2056
+ "#1d2b53",
2057
+ "#7e2553",
2058
+ "#008751",
2059
+ "#ab5236",
2060
+ "#5f574f",
2061
+ "#c2c3c7",
2062
+ "#fff1e8",
2063
+ "#ff004d",
2064
+ "#ffa300",
2065
+ "#ffec27",
2066
+ "#00e436",
2067
+ "#29adff",
2068
+ "#83769c",
2069
+ "#ff77a8",
2070
+ "#ffccaa"
2071
+ ],
2072
+ "source": "extensions/pico8-palette/pico-8.gpl"
2073
+ },
2074
+ "bubblegum-16": {
2075
+ "colors": [
2076
+ "#16171a",
2077
+ "#7f0622",
2078
+ "#d62411",
2079
+ "#ff8426",
2080
+ "#ffd100",
2081
+ "#fafdff",
2082
+ "#ff80a4",
2083
+ "#ff2674",
2084
+ "#94216a",
2085
+ "#430067",
2086
+ "#234975",
2087
+ "#68aed4",
2088
+ "#bfff3c",
2089
+ "#10d275",
2090
+ "#007899",
2091
+ "#002859"
2092
+ ],
2093
+ "source": "extensions/pinetreepizza-palettes/bubblegum-16.gpl"
2094
+ },
2095
+ "rosy-42": {
2096
+ "colors": [
2097
+ "#21181b",
2098
+ "#3b2027",
2099
+ "#7d3833",
2100
+ "#ab5130",
2101
+ "#cf752b",
2102
+ "#f0b541",
2103
+ "#ffee83",
2104
+ "#c8d45d",
2105
+ "#63ab3f",
2106
+ "#3b7d4f",
2107
+ "#2f5753",
2108
+ "#283540",
2109
+ "#1b1f21",
2110
+ "#2b2b45",
2111
+ "#3a3f5e",
2112
+ "#4c6885",
2113
+ "#4fa4b8",
2114
+ "#92e8c0",
2115
+ "#f5ffe8",
2116
+ "#dfe0e8",
2117
+ "#a3a7c2",
2118
+ "#686f99",
2119
+ "#404973",
2120
+ "#2c354d",
2121
+ "#14182e",
2122
+ "#4b1d52",
2123
+ "#692464",
2124
+ "#9c2a70",
2125
+ "#cc2f7b",
2126
+ "#ff5277",
2127
+ "#ffc2a1",
2128
+ "#ff8933",
2129
+ "#e64539",
2130
+ "#ad2f45",
2131
+ "#781d4f",
2132
+ "#4f1d4c",
2133
+ "#291d2b",
2134
+ "#3d2936",
2135
+ "#52333f",
2136
+ "#8f4d57",
2137
+ "#bd6a62",
2138
+ "#ffae70"
2139
+ ],
2140
+ "source": "extensions/pinetreepizza-palettes/rosy-42.gpl"
2141
+ },
2142
+ "google-ui": {
2143
+ "colors": [
2144
+ "#f69988",
2145
+ "#f36c60",
2146
+ "#e84e40",
2147
+ "#e51c23",
2148
+ "#dd191d",
2149
+ "#d01716",
2150
+ "#c41411",
2151
+ "#b0120a",
2152
+ "#f48fb1",
2153
+ "#f06292",
2154
+ "#ec407a",
2155
+ "#e91e63",
2156
+ "#d81b60",
2157
+ "#c2185b",
2158
+ "#ad1457",
2159
+ "#880e4f",
2160
+ "#ce93d8",
2161
+ "#ba68c8",
2162
+ "#ab47bc",
2163
+ "#9c27b0",
2164
+ "#8e24aa",
2165
+ "#7b1fa2",
2166
+ "#6a1b9a",
2167
+ "#4a148c",
2168
+ "#b39ddb",
2169
+ "#9575cd",
2170
+ "#7e57c2",
2171
+ "#673ab7",
2172
+ "#5e35b1",
2173
+ "#512da8",
2174
+ "#4527a0",
2175
+ "#311b92",
2176
+ "#9fa8da",
2177
+ "#7986cb",
2178
+ "#5c6bc0",
2179
+ "#3f51b5",
2180
+ "#3949ab",
2181
+ "#303f9f",
2182
+ "#283593",
2183
+ "#1a237e",
2184
+ "#afbfff",
2185
+ "#91a7ff",
2186
+ "#738ffe",
2187
+ "#5677fc",
2188
+ "#4e6cef",
2189
+ "#455ede",
2190
+ "#3b50ce",
2191
+ "#2a36b1",
2192
+ "#81d4fa",
2193
+ "#4fc3f7",
2194
+ "#29b6f6",
2195
+ "#03a9f4",
2196
+ "#039be5",
2197
+ "#0288d1",
2198
+ "#0277bd",
2199
+ "#01579b",
2200
+ "#80deea",
2201
+ "#4dd0e1",
2202
+ "#26c6da",
2203
+ "#00bcd4",
2204
+ "#00acc1",
2205
+ "#0097a7",
2206
+ "#00838f",
2207
+ "#006064",
2208
+ "#80cbc4",
2209
+ "#4db6ac",
2210
+ "#26a69a",
2211
+ "#009688",
2212
+ "#00897b",
2213
+ "#00796b",
2214
+ "#00695c",
2215
+ "#004d40",
2216
+ "#72d572",
2217
+ "#42bd41",
2218
+ "#2baf2b",
2219
+ "#259b24",
2220
+ "#0a8f08",
2221
+ "#0a7e07",
2222
+ "#056f00",
2223
+ "#0d5302",
2224
+ "#c5e1a5",
2225
+ "#aed581",
2226
+ "#9ccc65",
2227
+ "#8bc34a",
2228
+ "#7cb342",
2229
+ "#689f38",
2230
+ "#558b2f",
2231
+ "#33691e",
2232
+ "#e6ee9c",
2233
+ "#dce775",
2234
+ "#d4e157",
2235
+ "#cddc39",
2236
+ "#c0ca33",
2237
+ "#afb42b",
2238
+ "#9e9d24",
2239
+ "#827717",
2240
+ "#fff59d",
2241
+ "#fff176",
2242
+ "#ffee58",
2243
+ "#ffeb3b",
2244
+ "#fdd835",
2245
+ "#fbc02d",
2246
+ "#f9a825",
2247
+ "#f57f17",
2248
+ "#ffe082",
2249
+ "#ffd54f",
2250
+ "#ffca28",
2251
+ "#ffc107",
2252
+ "#ffb300",
2253
+ "#ffa000",
2254
+ "#ff8f00",
2255
+ "#ff6f00",
2256
+ "#ffcc80",
2257
+ "#ffb74d",
2258
+ "#ffa726",
2259
+ "#ff9800",
2260
+ "#fb8c00",
2261
+ "#f57c00",
2262
+ "#ef6c00",
2263
+ "#e65100",
2264
+ "#ffab91",
2265
+ "#ff8a65",
2266
+ "#ff7043",
2267
+ "#ff5722",
2268
+ "#f4511e",
2269
+ "#e64a19",
2270
+ "#d84315",
2271
+ "#bf360c",
2272
+ "#bcaaa4",
2273
+ "#a1887f",
2274
+ "#8d6e63",
2275
+ "#795548",
2276
+ "#6d4c41",
2277
+ "#5d4037",
2278
+ "#4e342e",
2279
+ "#3e2723",
2280
+ "#eeeeee",
2281
+ "#e0e0e0",
2282
+ "#bdbdbd",
2283
+ "#9e9e9e",
2284
+ "#757575",
2285
+ "#616161",
2286
+ "#424242",
2287
+ "#212121",
2288
+ "#b0bec5",
2289
+ "#90a4ae",
2290
+ "#78909c",
2291
+ "#607d8b",
2292
+ "#546e7a",
2293
+ "#455a64",
2294
+ "#37474f",
2295
+ "#263238",
2296
+ "#000000",
2297
+ "#ffffff"
2298
+ ],
2299
+ "source": "extensions/software-palettes/google-ui.gpl"
2300
+ },
2301
+ "minecraft": {
2302
+ "colors": [
2303
+ "#eaeded",
2304
+ "#f17716",
2305
+ "#be46b5",
2306
+ "#3cb0da",
2307
+ "#f9c629",
2308
+ "#71ba1a",
2309
+ "#ee90ad",
2310
+ "#3f4548",
2311
+ "#8e8f87",
2312
+ "#158a91",
2313
+ "#7b2bad",
2314
+ "#353a9e",
2315
+ "#734829",
2316
+ "#556e1c",
2317
+ "#a12823",
2318
+ "#16161b",
2319
+ "#cfd5d6",
2320
+ "#e06101",
2321
+ "#a9309f",
2322
+ "#2489c7",
2323
+ "#f1af15",
2324
+ "#5ea919",
2325
+ "#d6658f",
2326
+ "#373a3e",
2327
+ "#7d7d73",
2328
+ "#157788",
2329
+ "#64209c",
2330
+ "#2d2f8f",
2331
+ "#603c20",
2332
+ "#495b24",
2333
+ "#8e2121",
2334
+ "#080a0f",
2335
+ "#d2b2a1",
2336
+ "#a25426",
2337
+ "#96586d",
2338
+ "#726d8a",
2339
+ "#ba8523",
2340
+ "#687635",
2341
+ "#a24e4f",
2342
+ "#3a2a24",
2343
+ "#876b62",
2344
+ "#575b5b",
2345
+ "#764656",
2346
+ "#4a3c5b",
2347
+ "#4d3324",
2348
+ "#4c532a",
2349
+ "#8f3d2f",
2350
+ "#251710"
2351
+ ],
2352
+ "source": "extensions/software-palettes/minecraft.gpl"
2353
+ },
2354
+ "monokai": {
2355
+ "colors": [
2356
+ "#000000",
2357
+ "#1b1d1e",
2358
+ "#272820",
2359
+ "#3e3d32",
2360
+ "#75715e",
2361
+ "#f8f8f2",
2362
+ "#f92672",
2363
+ "#fd971f",
2364
+ "#e6db74",
2365
+ "#66d9ef",
2366
+ "#a6e22e",
2367
+ "#ae81ff"
2368
+ ],
2369
+ "source": "extensions/software-palettes/monokai.gpl"
2370
+ },
2371
+ "smile-basic": {
2372
+ "colors": [
2373
+ "#00f8f8",
2374
+ "#000000",
2375
+ "#0000ff",
2376
+ "#0000f8",
2377
+ "#f800f8",
2378
+ "#808080",
2379
+ "#008000",
2380
+ "#00f800",
2381
+ "#f800f8",
2382
+ "#800000",
2383
+ "#000080",
2384
+ "#808000",
2385
+ "#800080",
2386
+ "#f80000",
2387
+ "#c0c0c0",
2388
+ "#008080",
2389
+ "#f8f8f8",
2390
+ "#f8f800"
2391
+ ],
2392
+ "source": "extensions/software-palettes/smile-basic.gpl"
2393
+ },
2394
+ "solarized": {
2395
+ "colors": [
2396
+ "#002b36",
2397
+ "#073642",
2398
+ "#586e75",
2399
+ "#657b83",
2400
+ "#839496",
2401
+ "#93a1a1",
2402
+ "#eee8d5",
2403
+ "#fdf6e3",
2404
+ "#b58900",
2405
+ "#cb4b16",
2406
+ "#dc322f",
2407
+ "#d33682",
2408
+ "#6c71c4",
2409
+ "#268bd2",
2410
+ "#2aa198",
2411
+ "#859900"
2412
+ ],
2413
+ "source": "extensions/software-palettes/solarized.gpl"
2414
+ },
2415
+ "web-safe-colors": {
2416
+ "colors": [
2417
+ "#ffffff",
2418
+ "#ffffcc",
2419
+ "#ffff99",
2420
+ "#ffff66",
2421
+ "#ffff33",
2422
+ "#ffff00",
2423
+ "#ffccff",
2424
+ "#ffcccc",
2425
+ "#ffcc99",
2426
+ "#ffcc66",
2427
+ "#ffcc33",
2428
+ "#ffcc00",
2429
+ "#ff99ff",
2430
+ "#ff99cc",
2431
+ "#ff9999",
2432
+ "#ff9966",
2433
+ "#ff9933",
2434
+ "#ff9900",
2435
+ "#ff66ff",
2436
+ "#ff66cc",
2437
+ "#ff6699",
2438
+ "#ff6666",
2439
+ "#ff6633",
2440
+ "#ff6600",
2441
+ "#ff33ff",
2442
+ "#ff33cc",
2443
+ "#ff3399",
2444
+ "#ff3366",
2445
+ "#ff3333",
2446
+ "#ff3300",
2447
+ "#ff00ff",
2448
+ "#ff00cc",
2449
+ "#ff0099",
2450
+ "#ff0066",
2451
+ "#ff0033",
2452
+ "#ff0000",
2453
+ "#ccffff",
2454
+ "#ccffcc",
2455
+ "#ccff99",
2456
+ "#ccff66",
2457
+ "#ccff33",
2458
+ "#ccff00",
2459
+ "#ccccff",
2460
+ "#cccccc",
2461
+ "#cccc99",
2462
+ "#cccc66",
2463
+ "#cccc33",
2464
+ "#cccc00",
2465
+ "#cc99ff",
2466
+ "#cc99cc",
2467
+ "#cc9999",
2468
+ "#cc9966",
2469
+ "#cc9933",
2470
+ "#cc9900",
2471
+ "#cc66ff",
2472
+ "#cc66cc",
2473
+ "#cc6699",
2474
+ "#cc6666",
2475
+ "#cc6633",
2476
+ "#cc6600",
2477
+ "#cc33ff",
2478
+ "#cc33cc",
2479
+ "#cc3399",
2480
+ "#cc3366",
2481
+ "#cc3333",
2482
+ "#cc3300",
2483
+ "#cc00ff",
2484
+ "#cc00cc",
2485
+ "#cc0099",
2486
+ "#cc0066",
2487
+ "#cc0033",
2488
+ "#cc0000",
2489
+ "#99ffff",
2490
+ "#99ffcc",
2491
+ "#99ff99",
2492
+ "#99ff66",
2493
+ "#99ff33",
2494
+ "#99ff00",
2495
+ "#99ccff",
2496
+ "#99cccc",
2497
+ "#99cc99",
2498
+ "#99cc66",
2499
+ "#99cc33",
2500
+ "#99cc00",
2501
+ "#9999ff",
2502
+ "#9999cc",
2503
+ "#999999",
2504
+ "#999966",
2505
+ "#999933",
2506
+ "#999900",
2507
+ "#9966ff",
2508
+ "#9966cc",
2509
+ "#996699",
2510
+ "#996666",
2511
+ "#996633",
2512
+ "#996600",
2513
+ "#9933ff",
2514
+ "#9933cc",
2515
+ "#993399",
2516
+ "#993366",
2517
+ "#993333",
2518
+ "#993300",
2519
+ "#9900ff",
2520
+ "#9900cc",
2521
+ "#990099",
2522
+ "#990066",
2523
+ "#990033",
2524
+ "#990000",
2525
+ "#66ffff",
2526
+ "#66ffcc",
2527
+ "#66ff99",
2528
+ "#66ff66",
2529
+ "#66ff33",
2530
+ "#66ff00",
2531
+ "#66ccff",
2532
+ "#66cccc",
2533
+ "#66cc99",
2534
+ "#66cc66",
2535
+ "#66cc33",
2536
+ "#66cc00",
2537
+ "#6699ff",
2538
+ "#6699cc",
2539
+ "#669999",
2540
+ "#669966",
2541
+ "#669933",
2542
+ "#669900",
2543
+ "#6666ff",
2544
+ "#6666cc",
2545
+ "#666699",
2546
+ "#666666",
2547
+ "#666633",
2548
+ "#666600",
2549
+ "#6633ff",
2550
+ "#6633cc",
2551
+ "#663399",
2552
+ "#663366",
2553
+ "#663333",
2554
+ "#663300",
2555
+ "#6600ff",
2556
+ "#6600cc",
2557
+ "#660099",
2558
+ "#660066",
2559
+ "#660033",
2560
+ "#660000",
2561
+ "#33ffff",
2562
+ "#33ffcc",
2563
+ "#33ff99",
2564
+ "#33ff66",
2565
+ "#33ff33",
2566
+ "#33ff00",
2567
+ "#33ccff",
2568
+ "#33cccc",
2569
+ "#33cc99",
2570
+ "#33cc66",
2571
+ "#33cc33",
2572
+ "#33cc00",
2573
+ "#3399ff",
2574
+ "#3399cc",
2575
+ "#339999",
2576
+ "#339966",
2577
+ "#339933",
2578
+ "#339900",
2579
+ "#3366ff",
2580
+ "#3366cc",
2581
+ "#336699",
2582
+ "#336666",
2583
+ "#336633",
2584
+ "#336600",
2585
+ "#3333ff",
2586
+ "#3333cc",
2587
+ "#333399",
2588
+ "#333366",
2589
+ "#333333",
2590
+ "#333300",
2591
+ "#3300ff",
2592
+ "#3300cc",
2593
+ "#330099",
2594
+ "#330066",
2595
+ "#330033",
2596
+ "#330000",
2597
+ "#00ffff",
2598
+ "#00ffcc",
2599
+ "#00ff99",
2600
+ "#00ff66",
2601
+ "#00ff33",
2602
+ "#00ff00",
2603
+ "#00ccff",
2604
+ "#00cccc",
2605
+ "#00cc99",
2606
+ "#00cc66",
2607
+ "#00cc33",
2608
+ "#00cc00",
2609
+ "#0099ff",
2610
+ "#0099cc",
2611
+ "#009999",
2612
+ "#009966",
2613
+ "#009933",
2614
+ "#009900",
2615
+ "#0066ff",
2616
+ "#0066cc",
2617
+ "#006699",
2618
+ "#006666",
2619
+ "#006633",
2620
+ "#006600",
2621
+ "#0033ff",
2622
+ "#0033cc",
2623
+ "#003399",
2624
+ "#003366",
2625
+ "#003333",
2626
+ "#003300",
2627
+ "#0000ff",
2628
+ "#0000cc",
2629
+ "#000099",
2630
+ "#000066",
2631
+ "#000033",
2632
+ "#000000"
2633
+ ],
2634
+ "source": "extensions/software-palettes/web-safe-colors.gpl"
2635
+ },
2636
+ "win16": {
2637
+ "colors": [
2638
+ "#000000",
2639
+ "#820000",
2640
+ "#008200",
2641
+ "#828200",
2642
+ "#000082",
2643
+ "#820082",
2644
+ "#008282",
2645
+ "#c3c3c3",
2646
+ "#828282",
2647
+ "#ff0000",
2648
+ "#00ff00",
2649
+ "#ffff00",
2650
+ "#0000ff",
2651
+ "#ff00ff",
2652
+ "#00ffff",
2653
+ "#ffffff"
2654
+ ],
2655
+ "source": "extensions/software-palettes/win16.gpl"
2656
+ },
2657
+ "x11": {
2658
+ "colors": [
2659
+ "#000000",
2660
+ "#fffafa",
2661
+ "#f8f8ff",
2662
+ "#f5f5f5",
2663
+ "#dcdcdc",
2664
+ "#fffaf0",
2665
+ "#fdf5e6",
2666
+ "#faf0e6",
2667
+ "#faebd7",
2668
+ "#ffefd5",
2669
+ "#ffebcd",
2670
+ "#ffe4c4",
2671
+ "#ffdab9",
2672
+ "#ffdead",
2673
+ "#ffe4b5",
2674
+ "#fff8dc",
2675
+ "#fffff0",
2676
+ "#fffacd",
2677
+ "#fff5ee",
2678
+ "#f0fff0",
2679
+ "#f5fffa",
2680
+ "#f0ffff",
2681
+ "#f0f8ff",
2682
+ "#e6e6fa",
2683
+ "#fff0f5",
2684
+ "#ffe4e1",
2685
+ "#ffffff",
2686
+ "#000000",
2687
+ "#2f4f4f",
2688
+ "#696969",
2689
+ "#708090",
2690
+ "#778899",
2691
+ "#bebebe",
2692
+ "#d3d3d3",
2693
+ "#d3d3d3",
2694
+ "#191970",
2695
+ "#000080",
2696
+ "#000080",
2697
+ "#6495ed",
2698
+ "#483d8b",
2699
+ "#6a5acd",
2700
+ "#7b68ee",
2701
+ "#8470ff",
2702
+ "#0000cd",
2703
+ "#4169e1",
2704
+ "#0000ff",
2705
+ "#1e90ff",
2706
+ "#00bfff",
2707
+ "#87ceeb",
2708
+ "#87cefa",
2709
+ "#4682b4",
2710
+ "#b0c4de",
2711
+ "#add8e6",
2712
+ "#b0e0e6",
2713
+ "#afeeee",
2714
+ "#00ced1",
2715
+ "#48d1cc",
2716
+ "#40e0d0",
2717
+ "#00ffff",
2718
+ "#e0ffff",
2719
+ "#5f9ea0",
2720
+ "#66cdaa",
2721
+ "#7fffd4",
2722
+ "#006400",
2723
+ "#556b2f",
2724
+ "#8fbc8f",
2725
+ "#2e8b57",
2726
+ "#3cb371",
2727
+ "#20b2aa",
2728
+ "#98fb98",
2729
+ "#00ff7f",
2730
+ "#7cfc00",
2731
+ "#00ff00",
2732
+ "#7fff00",
2733
+ "#00fa9a",
2734
+ "#adff2f",
2735
+ "#32cd32",
2736
+ "#9acd32",
2737
+ "#228b22",
2738
+ "#6b8e23",
2739
+ "#bdb76b",
2740
+ "#f0e68c",
2741
+ "#eee8aa",
2742
+ "#fafad2",
2743
+ "#ffffe0",
2744
+ "#ffff00",
2745
+ "#ffd700",
2746
+ "#eedd82",
2747
+ "#daa520",
2748
+ "#b8860b",
2749
+ "#bc8f8f",
2750
+ "#cd5c5c",
2751
+ "#8b4513",
2752
+ "#a0522d",
2753
+ "#cd853f",
2754
+ "#deb887",
2755
+ "#f5f5dc",
2756
+ "#f5deb3",
2757
+ "#f4a460",
2758
+ "#d2b48c",
2759
+ "#d2691e",
2760
+ "#b22222",
2761
+ "#a52a2a",
2762
+ "#e9967a",
2763
+ "#fa8072",
2764
+ "#ffa07a",
2765
+ "#ffa500",
2766
+ "#ff8c00",
2767
+ "#ff7f50",
2768
+ "#f08080",
2769
+ "#ff6347",
2770
+ "#ff4500",
2771
+ "#ff0000",
2772
+ "#ff69b4",
2773
+ "#ff1493",
2774
+ "#ffc0cb",
2775
+ "#ffb6c1",
2776
+ "#db7093",
2777
+ "#b03060",
2778
+ "#c71585",
2779
+ "#d02090",
2780
+ "#ff00ff",
2781
+ "#ee82ee",
2782
+ "#dda0dd",
2783
+ "#da70d6",
2784
+ "#ba55d3",
2785
+ "#9932cc",
2786
+ "#9400d3",
2787
+ "#8a2be2",
2788
+ "#a020f0",
2789
+ "#9370db",
2790
+ "#d8bfd8",
2791
+ "#a9a9a9",
2792
+ "#00008b",
2793
+ "#008b8b",
2794
+ "#8b008b",
2795
+ "#8b0000",
2796
+ "#90ee90"
2797
+ ],
2798
+ "source": "extensions/software-palettes/x11.gpl"
2799
+ },
2800
+ "zughy-32": {
2801
+ "colors": [
2802
+ "#472d3c",
2803
+ "#5e3643",
2804
+ "#7a444a",
2805
+ "#a05b53",
2806
+ "#bf7958",
2807
+ "#eea160",
2808
+ "#f4cca1",
2809
+ "#b6d53c",
2810
+ "#71aa34",
2811
+ "#397b44",
2812
+ "#3c5956",
2813
+ "#302c2e",
2814
+ "#5a5353",
2815
+ "#7d7071",
2816
+ "#a0938e",
2817
+ "#cfc6b8",
2818
+ "#dff6f5",
2819
+ "#8aebf1",
2820
+ "#28ccdf",
2821
+ "#3978a8",
2822
+ "#394778",
2823
+ "#39314b",
2824
+ "#564064",
2825
+ "#8e478c",
2826
+ "#cd6093",
2827
+ "#ffaeb6",
2828
+ "#f4b41b",
2829
+ "#f47e1b",
2830
+ "#e6482e",
2831
+ "#a93b3b",
2832
+ "#827094",
2833
+ "#4f546b"
2834
+ ],
2835
+ "source": "extensions/zughy-palettes/zughy-32.gpl"
2836
+ },
2837
+ "tags": {
2838
+ "colors": [
2839
+ "#000000",
2840
+ "#fe5b59",
2841
+ "#f7a547",
2842
+ "#f3ce52",
2843
+ "#6acd5b",
2844
+ "#57b9f2",
2845
+ "#d186df",
2846
+ "#a5a5a7"
2847
+ ],
2848
+ "source": "palettes/tags.gpl"
2849
+ }
2850
+ }
2851
+ }