Added QFT

This commit is contained in:
2026-05-29 15:40:42 -04:00
parent e59b024b62
commit 56c59a1f9c
148 changed files with 428741 additions and 7 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 889 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 885 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 656 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 863 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 883 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 885 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 893 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 864 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 889 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 884 KiB

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html><html><head><meta charset="utf-8"><title>QFT · sketch 04 · light grounds, large fields, thick strokes</title>
<style>body{margin:0;background:#0b0b0b;color:#bbb;font:12px/1.5 ui-monospace,Menlo,monospace;padding:26px;max-width:1800px}
h1{font-weight:400;letter-spacing:.22em;text-transform:uppercase;font-size:13px;color:#9bc6a5}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(440px,1fr));gap:20px;margin-top:18px}
figure{margin:0;background:#fff;border:1px solid #262626;overflow:hidden}img{width:100%;display:block}
figcaption{padding:8px 10px;color:#e8e4d8;background:#111}small{color:#777;display:block}
.notes{color:#999;font-size:12px;background:#0e1a14;padding:14px 18px;border-left:3px solid #9bc6a5;margin:18px 0}</style></head><body>
<h1>QFT · sketch 04 · light grounds + large fields + thick strokes + gradients</h1>
<div class="notes">
<b>What's varying:</b> arbitrary <code>paperOverride</code> RGB (no preset substrate constraints) — peach, linen, mauve, pale-mint, ivory, pale-cyan, pearl, bone-china. <b>Stroke width</b> bumped to 2.43.4× (was 0.951.30). <b>Field scales</b> mostly &gt; 1.4 — at least one lattice per plate bleeds past the canvas edge. <b>Per-edge hue gradients</b> within each field (each line is two-toned, not solid).
</div>
<div class=grid>
<figure><img src="01_warm-sunset-cream.svg"><figcaption>01 Warm sunset · cream<small>cubic 1.75× bleeds past frame · amber→red gradients</small></figcaption></figure>
<figure><img src="02_pale-verdigris-linen.svg"><figcaption>02 Pale verdigris · linen<small>aged-metal patina on warm linen · teal cubic, copper accents</small></figcaption></figure>
<figure><img src="03_rose-peach.svg"><figcaption>03 Rose pastel · peach paper<small>warm peach ground, pink→red across all fields</small></figcaption></figure>
<figure><img src="04_pale-sky-ivory.svg"><figcaption>04 Pale sky · ivory · giant Schlegel<small>schlegel 1.95× bleeds — the cube-in-cube dominates</small></figcaption></figure>
<figure><img src="05_mint-gold-pale.svg"><figcaption>05 Mint &amp; gold · pale-mint<small>fresh / spring · teal cubic with gold E8 + cross-links</small></figcaption></figure>
<figure><img src="06_bone-radial-gradient.svg"><figcaption>06 Bone china · radial gradient<small>cool-centre→warm-edges spatially (gradientMode=radial)</small></figcaption></figure>
<figure><img src="07_pale-mauve-violet.svg"><figcaption>07 Mauve fog · violet→pink · thick<small>cubic 1.85× bleeds · violet→pink gradients</small></figcaption></figure>
<figure><img src="08_faded-blueprint.svg"><figcaption>08 Faded blueprint · pale cyan<small>schlegel 1.90× bleeds · deep blue ink on pale cyan paper</small></figcaption></figure>
<figure><img src="09_linen-sepia-large.svg"><figcaption>09 Linen · sepia · LARGE · thickest strokes<small>stroke 3.4 — chunkiest in the set; everything &gt; 1.5×</small></figcaption></figure>
<figure><img src="10_pearl-pastel-spectrum.svg"><figcaption>10 Pearl · pastel spectrum<small>4 distinct hue families on near-white pearl ground</small></figcaption></figure>
</div>
</body></html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html><html><head><meta charset="utf-8">
<style>html,body{margin:0;background:#222}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:10px;width:2400px}figure{margin:0;position:relative;background:#fff;overflow:hidden}img{width:100%;display:block}figcaption{position:absolute;left:0;bottom:0;right:0;padding:6px 10px;font:15px ui-monospace,monospace;color:#fff;background:linear-gradient(transparent,#000d)}</style></head><body>
<div class="grid" id=g></div><script>
const items=[
["01_warm-sunset-cream.svg","01 warm sunset · cream"],
["02_pale-verdigris-linen.svg","02 pale verdigris · linen"],
["03_rose-peach.svg","03 rose · peach"],
["04_pale-sky-ivory.svg","04 pale sky · ivory"],
["05_mint-gold-pale.svg","05 mint & gold"],
["06_bone-radial-gradient.svg","06 bone · radial gradient"],
["07_pale-mauve-violet.svg","07 mauve fog · violet"],
["08_faded-blueprint.svg","08 faded blueprint"],
["09_linen-sepia-large.svg","09 linen · sepia · thickest"],
["10_pearl-pastel-spectrum.svg","10 pearl · pastel spectrum"],
];
const base="http://localhost:8731/output/qft/sketch04/";const g=document.getElementById('g');
for(const[f,c]of items){const fig=document.createElement('figure');const im=document.createElement('img');im.src=base+f;const cap=document.createElement('figcaption');cap.textContent=c;fig.append(im,cap);g.append(fig);}
</script></body></html>