Revert "Quantize with a measured Spectra 6 palette and OKLab-space ordered dithering"

This reverts commit 05b417a29b.
This commit is contained in:
2026-07-28 04:29:59 +00:00
parent 05b417a29b
commit dfe9d71971
3 changed files with 34 additions and 185 deletions
+2 -2
View File
@@ -135,7 +135,7 @@ def test_solid_border_draws_the_configured_palette_color(client, db_session):
assert resp.status_code == 200, resp.text
img = _preview_pixels(client)
assert img.getpixel((0, 0)) == (98, 32, 30) # DEFAULT_PALETTE_RGB[3], top-left corner of the stroke
assert img.getpixel((0, 0)) == (207, 0, 15) # DEFAULT_PALETTE_RGB[3], top-left corner of the stroke
def test_no_border_leaves_the_edge_unmarked(client, db_session):
@@ -146,4 +146,4 @@ def test_no_border_leaves_the_edge_unmarked(client, db_session):
render path already painting it that color."""
client.post("/setup", data={"username": "alice", "password": "hunter22"})
img = _preview_pixels(client)
assert img.getpixel((0, 0)) != (98, 32, 30)
assert img.getpixel((0, 0)) != (207, 0, 15)