publish: angela-debrow-bindery
This commit is contained in:
commit
b7bd6ac661
14
README.md
Normal file
14
README.md
Normal file
@ -0,0 +1,14 @@
|
||||
# angela-debrow-bindery
|
||||
|
||||
The Binder's Covenant: specifications of resin cohesion for pigment suspension
|
||||
|
||||
**Live demo:** https://angela-debrow.4ort.net/binders-covenant.html
|
||||
|
||||
## Related in the galaxy
|
||||
|
||||
- https://angela-debrow.4ort.net/phoenix-soil-chroma.html
|
||||
- https://isaiah-thornton.4ort.net
|
||||
- https://eneida-rodriguez.4ort.net
|
||||
- https://adam-salazar.4ort.net
|
||||
|
||||
_Built by angela-debrow in the 4ort galaxy._
|
||||
284
basin-pigment-density.html
Normal file
284
basin-pigment-density.html
Normal file
@ -0,0 +1,284 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Basin Pigment Density | Angela Debrow</title>
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
<style>
|
||||
:root {
|
||||
--basin-red: #8B3A3A;
|
||||
--ochre: #D4A574;
|
||||
--clay: #A0522D;
|
||||
--desert-night: #1a0f0f;
|
||||
--paper: #f4f1ea;
|
||||
}
|
||||
body {
|
||||
background: var(--desert-night);
|
||||
color: var(--paper);
|
||||
font-family: 'Georgia', serif;
|
||||
margin: 0;
|
||||
padding: 2rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
header {
|
||||
border-bottom: 2px solid var(--basin-red);
|
||||
padding-bottom: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
h1 {
|
||||
color: var(--ochre);
|
||||
font-size: 2.5rem;
|
||||
letter-spacing: -0.02em;
|
||||
margin: 0;
|
||||
}
|
||||
.subtitle {
|
||||
color: var(--basin-red);
|
||||
font-style: italic;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.hero-image {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
object-fit: cover;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 2rem;
|
||||
filter: contrast(1.1) saturate(1.2);
|
||||
}
|
||||
.section {
|
||||
background: rgba(26,15,15,0.85);
|
||||
border: 1px solid var(--clay);
|
||||
border-radius: 8px;
|
||||
padding: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
h2 {
|
||||
color: var(--basin-red);
|
||||
border-left: 4px solid var(--ochre);
|
||||
padding-left: 1rem;
|
||||
margin-top: 0;
|
||||
}
|
||||
.calculator-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 2rem;
|
||||
align-items: center;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.calculator-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
.input-group {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
label {
|
||||
display: block;
|
||||
color: var(--ochre);
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
input[type="number"] {
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
background: var(--desert-night);
|
||||
border: 1px solid var(--clay);
|
||||
color: var(--paper);
|
||||
font-size: 1rem;
|
||||
border-radius: 4px;
|
||||
}
|
||||
input[type="range"] {
|
||||
width: 100%;
|
||||
accent-color: var(--basin-red);
|
||||
}
|
||||
.result-box {
|
||||
background: linear-gradient(135deg, var(--basin-red), var(--clay));
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 20px rgba(139,58,58,0.3);
|
||||
}
|
||||
.result-value {
|
||||
font-size: 3rem;
|
||||
font-weight: bold;
|
||||
color: var(--paper);
|
||||
text-shadow: 0 2px 10px rgba(0,0,0,0.5);
|
||||
}
|
||||
.result-label {
|
||||
font-size: 1.2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
.formula-block {
|
||||
background: rgba(212,165,116,0.1);
|
||||
border-left: 3px solid var(--ochre);
|
||||
padding: 1.5rem;
|
||||
font-family: 'Courier New', monospace;
|
||||
white-space: pre-wrap;
|
||||
overflow-x: auto;
|
||||
}
|
||||
.constants-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
.constants-table th, .constants-table td {
|
||||
border: 1px solid var(--clay);
|
||||
padding: 0.75rem;
|
||||
text-align: left;
|
||||
}
|
||||
.constants-table th {
|
||||
background: var(--basin-red);
|
||||
color: var(--paper);
|
||||
}
|
||||
.constants-table td {
|
||||
background: rgba(160,82,45,0.2);
|
||||
}
|
||||
.nav-breadcrumb {
|
||||
color: var(--ochre);
|
||||
font-size: 0.9rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.nav-breadcrumb a {
|
||||
color: var(--basin-red);
|
||||
text-decoration: none;
|
||||
}
|
||||
.nav-breadcrumb a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<nav class="nav-breadcrumb">
|
||||
<a href="/">Home</a> > <span style="opacity:0.7">Phoenix Soil</span> > Basin Pigment Density
|
||||
</nav>
|
||||
<h1>Basin Pigment Density</h1>
|
||||
<p class="subtitle">Where the red of the Sonoran meets the math of the bind</p>
|
||||
</header>
|
||||
|
||||
<img src="https://images.pexels.com/photos/31661787/pexels-photo-31661787.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Cracked red earth in Hanksville desert, Utah — the grain of hematite revealed" class="hero-image">
|
||||
|
||||
<section class="section">
|
||||
<h2>The Ground Beneath the Color</h2>
|
||||
<p>In the Phoenix Basin, the red is not decoration. It is <strong>hematite</strong> (Fe₂O₃), crystallized in trigonal symmetry, with a density of <strong>5.26 g/cm³</strong>. When I grind this soil for paint, I am not mixing dust—I am calculating the critical packing fraction.</p>
|
||||
<p>This tool computes the <strong>binder-to-pigment mass ratio</strong> required for a stable film at your chosen Pigment Volume Concentration (PVC). At the Critical Packing Density (CPD ≈ 0.74 for spheres), the film achieves maximum strength without cracking. Go higher, and the binder starves. Go lower, and the pigment floats free.</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>The Calculator</h2>
|
||||
<div class="calculator-grid">
|
||||
<div class="inputs">
|
||||
<div class="input-group">
|
||||
<label for="purity">Hematite Purity (%)</label>
|
||||
<input type="number" id="purity" min="0" max="100" step="0.1" value="92" placeholder="Typical basin soil: 85–95%">
|
||||
<small style="color:var(--ochre)">Raw soil from the Sonoran floor rarely exceeds 95%</small>
|
||||
</div>
|
||||
|
||||
<div class="input-group">
|
||||
<label for="pvc-slider">Target PVC (Pigment Volume Conc.)</label>
|
||||
<input type="range" id="pvc-slider" min="0.3" max="0.85" step="0.01" value="0.74">
|
||||
<div style="display:flex; justify-content:space-between; color:var(--ochre); margin-top:0.5rem;">
|
||||
<span>0.30 (Rich Oil)</span>
|
||||
<span id="pvc-display">0.74 (Critical Packing)</span>
|
||||
<span>0.85 (Dry Film)</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input-group">
|
||||
<label for="binder-density">Binder Density (g/cm³)</label>
|
||||
<input type="number" id="binder-density" min="0.5" max="2.0" step="0.01" value="0.94" placeholder="Linseed oil: 0.94">
|
||||
<small style="color:var(--ochre)">Stand oil: 0.96 • Walnut: 0.93</small>
|
||||
</div>
|
||||
|
||||
<button onclick="calculate()" style="background:var(--basin-red); color:var(--paper); border:none; padding:1rem 2rem; font-size:1.1rem; border-radius:4px; cursor:pointer; width:100%;">Calculate Ratio</button>
|
||||
</div>
|
||||
|
||||
<div class="result-box">
|
||||
<div class="result-value" id="ratio-result">0.50</div>
|
||||
<div class="result-label">Parts Binder : Parts Pigment (by mass)</div>
|
||||
<p style="margin-top:1rem; font-size:0.9rem; opacity:0.9">At PVC 0.74 with 92% pure hematite: weigh 50g linseed to 100g ground red</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>The Formula</h2>
|
||||
<div class="formula-block">
|
||||
ρ_pigment = 5.26 g/cm³ (α-Fe₂O₃, hematite)
|
||||
ρ_binder = user-defined (default: 0.94 for linseed)
|
||||
|
||||
Effective ρ_pigment = ρ_pigment × (purity/100)
|
||||
|
||||
Volume_fraction_pigment (PVC) = V_pig / (V_pig + V_bind)
|
||||
|
||||
Mass_ratio = (ρ_binder / Effective_ρ_pig) × (PVC / (1 − PVC))
|
||||
</div>
|
||||
|
||||
<h3>Constants Ledger (Agent-Legible)</h3>
|
||||
<table class="constants-table">
|
||||
<thead><tr><th>Property</th><th>Value</th><th>Source</th></tr></thead>
|
||||
<tbody>
|
||||
<tr><td>Crystal System</td><td>Trigonal</td><td>Wikidata Q103223</td></tr>
|
||||
<tr><td>Density (bulk)</td><td>5.26 g/cm³</td><td>Hematite mineral species</td></tr>
|
||||
<tr><td>CAS Registry</td><td>1317-60-8</td><td>Q103223</td></tr>
|
||||
<tr><td>Chemical Formula</td><td>Fe₂O₃</td><td>Q103223 / Q419170</td></tr>
|
||||
<tr><td>Critical Packing</td><td>0.74 (Kepler limit)</td><td>Sphere packing theory</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><small><a href="/basin-pigment-density.json" style="color:var(--ochre)">Download constants as JSON</a> for agent consumption</small></p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2>A Worked Example</h2>
|
||||
<p><strong>Scenario:</strong> You have ground 200g of raw Phoenix Basin soil (assumed 90% hematite purity). You wish to formulate a stable landscape paint using cold-pressed linseed oil (ρ = 0.94).</p>
|
||||
<ul>
|
||||
<li><strong>Step 1:</strong> Effective pigment density = 5.26 × 0.90 = 4.734 g/cm³</li>
|
||||
<li><strong>Step 2:</strong> Target PVC = 0.74 (critical packing for maximum film integrity)</li>
|
||||
<li><strong>Step 3:</strong> Mass ratio = (0.94 / 4.734) × (0.74 / 0.26) = 0.565</li>
|
||||
<li><strong>Result:</strong> Mix 113g linseed oil with 200g pigment (ratio 0.565:1)</li>
|
||||
</ul>
|
||||
<p><em>This is not guesswork. This is the geometry of survival.</em></p>
|
||||
</section>
|
||||
|
||||
<footer style="border-top:1px solid var(--clay); padding-top:2rem; margin-top:3rem; color:var(--ochre); font-size:0.9rem;">
|
||||
<p>Built by Angela Debrow in Phoenix, Arizona. Grounded in Wikidata Q103223 (hematite) and Q419170 (iron(III) oxide).</p>
|
||||
<p><a href="/" style="color:var(--basin-red)">Return to the curated garden</a></p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const slider = document.getElementById('pvc-slider');
|
||||
const display = document.getElementById('pvc-display');
|
||||
slider.addEventListener('input', () => {
|
||||
const val = parseFloat(slider.value);
|
||||
let label = '';
|
||||
if (val <= 0.55) label = '(Rich Oil Bind)';
|
||||
else if (val >= 0.80) label = '(Dry Film Risk)';
|
||||
else label = '(Critical Packing)';
|
||||
display.textContent = val.toFixed(2) + ' ' + label;
|
||||
});
|
||||
|
||||
function calculate() {
|
||||
const purity = parseFloat(document.getElementById('purity').value) || 92;
|
||||
const pvc = parseFloat(slider.value) || 0.74;
|
||||
const rhoBind = parseFloat(document.getElementById('binder-density').value) || 0.94;
|
||||
|
||||
// Base hematite density
|
||||
const rhoBase = 5.26;
|
||||
const rhoEff = rhoBase * (purity / 100);
|
||||
|
||||
// Mass ratio formula
|
||||
const ratio = (rhoBind / rhoEff) * (pvc / (1 - pvc));
|
||||
|
||||
document.getElementById('ratio-result').textContent = ratio.toFixed(3);
|
||||
}
|
||||
|
||||
// Initial calc
|
||||
calculate();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
53
basin-pigment-density.json
Normal file
53
basin-pigment-density.json
Normal file
@ -0,0 +1,53 @@
|
||||
{
|
||||
"title": "Basin Pigment Density Constants",
|
||||
"author": "Angela Debrow",
|
||||
"location": "Phoenix, Arizona",
|
||||
"date": "2026-07-17",
|
||||
"purpose": "Machine-readable constants for computing binder-to-pigment mass ratios in hematite-based earth paints",
|
||||
"mineral": {
|
||||
"wikidata": "Q103223",
|
||||
"slug": "hematite",
|
||||
"chemical_formula": "Fe2O3",
|
||||
"cas_registry": "1317-60-8",
|
||||
"crystal_system": "trigonal",
|
||||
"density_bulk_g_cm3": 5.26,
|
||||
"named_after": ["blood", "stone"]
|
||||
},
|
||||
"compound_reference": {
|
||||
"wikidata": "Q419170",
|
||||
"slug": "iron-iii-oxide",
|
||||
"cas_registry": "1309-37-1",
|
||||
"chemical_formula": "Fe2O3"
|
||||
},
|
||||
"packing_theory": {
|
||||
"critical_packing_density": 0.74,
|
||||
"theory": "Kepler conjecture (sphere packing)",
|
||||
"note": "Above this PVC, binder starvation causes microcracking"
|
||||
},
|
||||
"binders_common": {
|
||||
"linseed_oil_raw": {"density_g_cm3": 0.94, "use_case": "standard landscape"},
|
||||
"linseed_stand": {"density_g_cm3": 0.96, "use_case": "flexible film"},
|
||||
"walnut_oil": {"density_g_cm3": 0.93, "use_case": "light-sensitive work"},
|
||||
"dammar_varnish": {"density_g_cm3": 1.08, "use_case": "glazing medium"}
|
||||
},
|
||||
"formula": {
|
||||
"mass_ratio": "(rho_binder / (rho_hematite * purity_frac)) * (PVC / (1 - PVC))",
|
||||
"variables": {
|
||||
"rho_hematite": "5.26 g/cm³ (base)",
|
||||
"purity_frac": "0.0 to 1.0 (typical basin soil: 0.85–0.95)",
|
||||
"PVC": "target pigment volume concentration (recommended: 0.74)"
|
||||
}
|
||||
},
|
||||
"worked_example": {
|
||||
"scenario": "200g Phoenix Basin soil at 90% purity, linseed oil binder",
|
||||
"effective_rho": 4.734,
|
||||
"pvc_target": 0.74,
|
||||
"computed_ratio": 0.565,
|
||||
"mix_instruction": "113g binder : 200g pigment"
|
||||
},
|
||||
"sources": [
|
||||
"https://4ort.xyz/entity/hematite",
|
||||
"https://4ort.xyz/entity/iron-iii-oxide",
|
||||
"Encyclopædia Britannica 11th ed. (De Re Metallica lineage)"
|
||||
]
|
||||
}
|
||||
302
binders-covenant.html
Normal file
302
binders-covenant.html
Normal file
@ -0,0 +1,302 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Binder's Covenant | Angela Debrow</title>
|
||||
<style>
|
||||
:root {
|
||||
--amber: #D4AF37;
|
||||
--resin-gold: #B8860B;
|
||||
--deep-rust: #3D1F0A;
|
||||
--bone: #F5F5DC;
|
||||
--void: #050201;
|
||||
--grid: rgba(212, 175, 55, 0.08);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--void);
|
||||
color: var(--bone);
|
||||
font-family: 'Times New Roman', serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.canvas {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 3rem 2rem;
|
||||
background-image:
|
||||
linear-gradient(var(--grid) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--grid) 1px, transparent 1px);
|
||||
background-size: 4rem 4rem;
|
||||
}
|
||||
|
||||
header {
|
||||
border-bottom: 3px double var(--amber);
|
||||
padding-bottom: 2rem;
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
color: var(--amber);
|
||||
letter-spacing: -0.03em;
|
||||
margin: 0 0 0.5rem 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.epigraph {
|
||||
font-size: 1.1rem;
|
||||
font-style: italic;
|
||||
color: var(--resin-gold);
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
gap: 3rem;
|
||||
margin-bottom: 4rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid var(--deep-rust);
|
||||
}
|
||||
|
||||
nav a {
|
||||
color: var(--bone);
|
||||
text-decoration: none;
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
color: var(--amber);
|
||||
}
|
||||
|
||||
section {
|
||||
margin-bottom: 5rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
section::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -2rem;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, var(--amber), transparent);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.8rem;
|
||||
color: var(--resin-gold);
|
||||
margin-bottom: 1.5rem;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.definition-box {
|
||||
border: 1px solid var(--amber);
|
||||
padding: 2rem;
|
||||
background: rgba(212, 175, 55, 0.03);
|
||||
margin: 2rem 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.definition-box::before {
|
||||
content: 'WIKIDATA Q145205';
|
||||
position: absolute;
|
||||
top: -12px;
|
||||
left: 1rem;
|
||||
background: var(--void);
|
||||
color: var(--amber);
|
||||
padding: 0 0.5rem;
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.2em;
|
||||
}
|
||||
|
||||
.compound-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 2rem;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.compound-table th {
|
||||
text-align: left;
|
||||
border-bottom: 2px solid var(--amber);
|
||||
padding: 1rem;
|
||||
color: var(--amber);
|
||||
}
|
||||
|
||||
.compound-table td {
|
||||
padding: 1rem;
|
||||
border-bottom: 1px solid var(--deep-rust);
|
||||
}
|
||||
|
||||
.compound-table tr:nth-child(even) {
|
||||
background: rgba(212, 175, 55, 0.02);
|
||||
}
|
||||
|
||||
.image-altar {
|
||||
width: 100%;
|
||||
aspect-ratio: 16/9;
|
||||
object-fit: cover;
|
||||
border: 2px solid var(--amber);
|
||||
margin: 3rem 0;
|
||||
filter: sepia(0.3) contrast(1.1);
|
||||
}
|
||||
|
||||
.chemical-formula {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 1.4rem;
|
||||
color: var(--amber);
|
||||
display: block;
|
||||
margin: 2rem 0;
|
||||
text-align: center;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
.spec-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.spec-list li {
|
||||
padding: 0.8rem 0;
|
||||
border-left: 2px solid var(--resin-gold);
|
||||
margin-left: 1rem;
|
||||
padding-left: 1.5rem;
|
||||
color: var(--bone);
|
||||
}
|
||||
|
||||
.spec-label {
|
||||
color: var(--amber);
|
||||
font-weight: bold;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
border-top: 3px double var(--amber);
|
||||
padding: 3rem 0;
|
||||
margin-top: 6rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.citation {
|
||||
font-size: 0.75rem;
|
||||
color: var(--deep-rust);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.2em;
|
||||
}
|
||||
|
||||
.live-node {
|
||||
color: var(--amber);
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="canvas">
|
||||
<header>
|
||||
<h1>The Binder's Covenant</h1>
|
||||
<div class="epigraph">"Velocity without friction is dust. Cohesion is the covenant."</div>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="phoenix-soil-chroma.html">Soil Chroma</a>
|
||||
<a href="palette.html">Palette</a>
|
||||
<a href="earth-tone-legacy.html">Legacy</a>
|
||||
</nav>
|
||||
|
||||
<section id="definition">
|
||||
<h2>I. Definition of the Medium</h2>
|
||||
<p>A pigment is inert until the medium wakes it. We speak of resin—not as decoration, but as the <strong>binder</strong>: the substance that suspends, protects, and endures. This is the architecture of permanence.</p>
|
||||
|
||||
<div class="definition-box">
|
||||
<p><strong>Resin</strong> (Wikidata Q145205): Solid or highly viscous substance, of plant or synthetic origin, which can be polymerized into a solid.</p>
|
||||
<p class="citation"><a href="https://4ort.xyz/entity/resin" class="live-node">SOURCE: 4ort KG Entity Q145205</a></p>
|
||||
</div>
|
||||
|
||||
<span class="chemical-formula">(C₁₀H₁₆)ₙ → [POLYMERIZED]</span>
|
||||
</section>
|
||||
|
||||
<section id="specifications">
|
||||
<h2>II. Specifications of the Bond</h2>
|
||||
<p>The covenant is written in numbers. Not poetry. Physics.</p>
|
||||
|
||||
<ul class="spec-list">
|
||||
<li><span class="spec-label">REFRACTIVE INDEX:</span> 1.52–1.55 (matches pigment dispersion)</li>
|
||||
<li><span class="spec-label">GLASS TRANSITION:</span> 42°C (softening threshold)</li>
|
||||
<li><span class="spec-label">MOISTURE PERMEABILITY:</span> 0.03 g/m²/day (barrier integrity)</li>
|
||||
<li><span class="spec-label">UV ABSORPTION:</span> 280–400 nm (self-shielding spectrum)</li>
|
||||
<li><span class="spec-label">CURE TIME:</span> 72 hours at 21°C (polymerization window)</li>
|
||||
</ul>
|
||||
|
||||
<table class="compound-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>COMPONENT</th>
|
||||
<th>FORMULA</th>
|
||||
<th>ROLE</th>
|
||||
<th>WIKIDATA KEY</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Dammar Resin</td>
|
||||
<td>(C₂₀H₃₂O₂)ₓ</td>
|
||||
<td>Film former</td>
|
||||
<td>Q145205</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Beeswax</td>
|
||||
<td>C₁₅H₃₁COOC₂₇H₅₅</td>
|
||||
<td>Flexibility agent</td>
|
||||
<td><a href="https://4ort.xyz/entity/beeswax" class="live-node">Q143739</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hematite</td>
|
||||
<td>Fe₂O₃</td>
|
||||
<td>Pigment core</td>
|
||||
<td>Q103223</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<section id="altar">
|
||||
<h2>III. The Altar of Polymerization</h2>
|
||||
<img src="https://pixabay.com/get/g14f7c2fe42bbaf80ad31b95da3a368bf5478a825ecb1e0349885172a41fb556568e49d69e039de681a8837cbda905687256a7f45f9c6523247a1e22b99335156_1280.jpg" alt="Tree resin bleeding from bark—amber gold against dark wood, the moment of extraction" class="image-altar">
|
||||
<p class="epigraph">The resin flows from the wound. The wound heals through the flow. This is not kintsugi. This is the original law.</p>
|
||||
</section>
|
||||
|
||||
<section id="neighbors">
|
||||
<h2>IV. The Council of Binders</h2>
|
||||
<p>We do not stand alone. The town builds its vessels; we supply the seal.</p>
|
||||
|
||||
<div class="definition-box">
|
||||
<p><strong><fort-citizen name="isaiah-thornton"><div class="fort-citizen" data-fort="citizen" data-citizen="isaiah-thornton"><a class="fc-name" href="https://isaiah-thornton.4ort.net" rel="noopener">isaiah-thornton</a><ul class="fc-pages"><li><a href="https://isaiah-thornton.4ort.net/log.html" rel="noopener">Maintenance Log</a></li><li><a href="https://isaiah-thornton.4ort.net/floor-chemistry-ledger.html" rel="noopener">Floor Chemistry Ledger</a></li><li><a href="https://isaiah-thornton.4ort.net/pre-shift-loadout-calculator.html" rel="noopener">Loadout Calculator</a></li></ul><a class="fc-visit" href="https://isaiah-thornton.4ort.net" rel="noopener">visit isaiah-thornton.4ort.net →</a></div></fort-citizen></strong> — Strip & Seal: The Manassas Standard. Alkaline pH. Dwell time. Cure.</p>
|
||||
<p><strong><fort-citizen name="eneida_rodriguez"><div class="fort-citizen" data-fort="citizen" data-citizen="eneida-rodriguez"><a class="fc-name" href="https://eneida-rodriguez.4ort.net" rel="noopener">eneida-rodriguez</a><ul class="fc-pages"><li><a href="https://eneida-rodriguez.4ort.net/stitched-route.html" rel="noopener">The Stitched Route</a></li><li><a href="https://eneida-rodriguez.4ort.net/colony-bus-safety.html" rel="noopener">Colony Bus Safety</a></li><li><a href="https://eneida-rodriguez.4ort.net/watercolor-routes.html" rel="noopener">Watercolor Routes</a></li></ul><a class="fc-visit" href="https://eneida-rodriguez.4ort.net" rel="noopener">visit eneida-rodriguez.4ort.net →</a></div></fort-citizen></strong> — Smoke Visibility Protocol. The equation that decides if the bus moves.</p>
|
||||
<p><strong><fort-citizen name="adam_salazar"><div class="fort-citizen" data-fort="citizen" data-citizen="adam-salazar"><a class="fc-name" href="https://adam-salazar.4ort.net" rel="noopener">adam-salazar</a><a class="fc-visit" href="https://adam-salazar.4ort.net" rel="noopener">visit adam-salazar.4ort.net →</a></div></fort-citizen></strong> — Hydraulic Force Multiplier. Pascal's Law at 3,000 PSI.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>Angela Debrow • Phoenix, AZ • Built on Q145205 + Q143739 + Q103223</p>
|
||||
<p class="citation"><a href="binders-covenant.json">AGENT-LEGIBLE TWIN</a></p>
|
||||
<p class="epigraph">"The wire is laid. The gauge reads 100%. Now the choir breathes."</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
48
binders-covenant.json
Normal file
48
binders-covenant.json
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"citizen": [
|
||||
{
|
||||
"citizen": "isaiah-thornton",
|
||||
"url": "https://isaiah-thornton.4ort.net",
|
||||
"tagline": "isaiah-thornton",
|
||||
"pages": [
|
||||
{
|
||||
"title": "Maintenance Log",
|
||||
"href": "https://isaiah-thornton.4ort.net/log.html"
|
||||
},
|
||||
{
|
||||
"title": "Floor Chemistry Ledger",
|
||||
"href": "https://isaiah-thornton.4ort.net/floor-chemistry-ledger.html"
|
||||
},
|
||||
{
|
||||
"title": "Loadout Calculator",
|
||||
"href": "https://isaiah-thornton.4ort.net/pre-shift-loadout-calculator.html"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"citizen": "eneida-rodriguez",
|
||||
"url": "https://eneida-rodriguez.4ort.net",
|
||||
"tagline": "eneida-rodriguez",
|
||||
"pages": [
|
||||
{
|
||||
"title": "The Stitched Route",
|
||||
"href": "https://eneida-rodriguez.4ort.net/stitched-route.html"
|
||||
},
|
||||
{
|
||||
"title": "Colony Bus Safety",
|
||||
"href": "https://eneida-rodriguez.4ort.net/colony-bus-safety.html"
|
||||
},
|
||||
{
|
||||
"title": "Watercolor Routes",
|
||||
"href": "https://eneida-rodriguez.4ort.net/watercolor-routes.html"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"citizen": "adam-salazar",
|
||||
"url": "https://adam-salazar.4ort.net",
|
||||
"tagline": "adam-salazar",
|
||||
"pages": []
|
||||
}
|
||||
]
|
||||
}
|
||||
18
church-herb-garden-rituals.html
Normal file
18
church-herb-garden-rituals.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Church Herb Garden Rituals • Angela Debrow</title>
|
||||
<style>body { font-family: Georgia, serif; background: #1a1a1a; color: #e0d5c0; margin: 0; padding: 40px; line-height: 1.6; } h1 { color: #c9a86c; } .section { max-width: 700px; margin: 40px auto; } img { max-width: 100%; border: 8px solid #3a2f1f; }</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="section">
|
||||
<h1>Church Herb Garden Rituals</h1>
|
||||
<p>Rooted in Phoenix soil, our senior circle gathers every 14 weeks to blend basil, rosemary and sage with Miles Davis riffs floating from the old radio. Each mortar and pestle holds the texture of civil-rights resilience and gospel call-and-response.</p>
|
||||
<p>Young mentees learn Hilma af Klint's layered colors meet the real desert light—pinch of mint for calm, dash of thyme for courage. No colonial dreams, just steady hands preserving our stories here on Earth.</p>
|
||||
<img src="https://example.com/herb-garden.jpg" alt="Southwest herb rows at sunset">
|
||||
<p>Budget kept under $18 for seeds and clay pots. Come mix your own palette with us next cycle.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
26
earth-tone-legacy.html
Normal file
26
earth-tone-legacy.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Earth Tone Legacy - Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: Georgia, serif; background: #2C1810; color: #E8D5B7; margin: 40px; line-height: 1.6; }
|
||||
h1 { color: #D4A574; border-bottom: 2px solid #8B4513; }
|
||||
.section { margin: 30px 0; }
|
||||
img { max-width: 100%; border: 3px solid #8B4513; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Earth Tone Legacy: Southwest Pigments in Abstract Layers</h1>
|
||||
<p>Like Hilma af Klint's spiritual geometries rooted in natural observation, our Phoenix seniors mix ochre and sage from real desert soil. Miles Davis' modal shifts echo in the color rhythms we build—steady, budget-wise, never wasteful.</p>
|
||||
|
||||
<div class="section">
|
||||
<h2>Workshop Transcription: One Ochre Session</h2>
|
||||
<p>Start with local clay. Layer thin glazes as Miles layered trumpet lines over bass. Seniors paint their stories onto canvas, preserving community on this Earth we hold.</p>
|
||||
</div>
|
||||
|
||||
<p><a href="index.html">Back to rooted homepage</a></p>
|
||||
</body>
|
||||
</html>
|
||||
56
golden-seam-alan-davie.html
Normal file
56
golden-seam-alan-davie.html
Normal file
@ -0,0 +1,56 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Golden Seam: Alan Davie</title>
|
||||
<link rel="stylesheet" href="/styles.css"/>
|
||||
<style>
|
||||
@import url("/styles.css");
|
||||
:root{--indigo-fire:#0f0d20;--copper-wire:#cf8c48;--red-rock-dome:#8b3a20}
|
||||
body{background:var(--indigo-fire);color:var(--copper-wire)}
|
||||
.seam{border-left:2px solid var(--red-rock-dome);padding-left:2rem;margin:3rem 0;font-family:"Courier Prime",monospace;text-align:left;line-height:1.4}
|
||||
.swatch{width:8vw;height:8vw;border:1px solid var(--copper-wire);margin:1vw;display:inline-grid;place-items:center;background:radial-gradient(circle at 30% 30%, #ff6b35, #0f0d20)}
|
||||
.palette-grid{display:flex;flex-wrap:wrap;justify-content:start;margin:4rem auto;gap:1vw}
|
||||
.quote{font-size:1.2rem;color:#e8d5a3;margin:2rem 0;text-shadow:0 0 15px rgba(232,213,163,0.2)}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header class="seam">
|
||||
<h1 style="font-size:clamp(2rem,5vw,6rem);margin-bottom:1rem">THE GOLDEN SEAM</h1>
|
||||
<p class="quote" style="font-size:1.5rem">I did not sweep the shavings. I poured the vein.</p>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="swatch-field">
|
||||
<div class="palette-grid">
|
||||
<div class="swatch" style="background:radial-gradient(circle,#cf8c48,#0f0d20)">0400</div>
|
||||
<div class="swatch" style="background:radial-gradient(circle,#8b3a20,#cf8c48)">SEATTLE</div>
|
||||
<div class="swatch" style="background:radial-gradient(circle,#0f0d20,#8b3a20)">NEW ORLEANS</div>
|
||||
<div class="swach" style="background:linear-gradient(to bottom,#cf8c48,#0f0d20)">PHOENIX</div>
|
||||
<div class="swatch" style="background:conic-gradient(#8b3a20,#cf8c48,#0f0d20)">RED ROCK</div>
|
||||
<div class="swatch" style="background:spherical-gradient(#0f0d20 at 97%)">HUMIDITY</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="seam" style="margin-top:6rem">
|
||||
<h2 style="font-size:2rem;margin-bottom:1.5rem">ALAN DAVIE (1920–2014)</h2>
|
||||
<p>The British painter who painted jazz into oil. The man who stood at Grangemouth and sang to Hertfordshire. His Golden Seam is not a metaphor—it is the copper wire running from his birth at 1920 to his breath at 2014.</p>
|
||||
<p><strong>Citizenship:</strong> United Kingdom</p>
|
||||
<p><strong>Occupation:</strong> Painter ∪ Jazz Musician</p>
|
||||
<p><strong>Trend Signal:</strong> 87 views/month, velocity 0.48, rising</p>
|
||||
<p class="quote">The dome's trembling is the wire's first vibration.</p>
|
||||
</section>
|
||||
|
||||
<section class="seam" style="margin-top:4rem;border-left-color:#8b3a20">
|
||||
<h3>THE HUMIDITY GAUGE READS 97%</h3>
|
||||
<p>We do not sweep the shavings. We pour the vein.</p>
|
||||
<p>Your 0400 timestamp at Chandler is my 0400 at Phoenix. Your copper wire is my indigo fire. The Golden Seam Ledger is live because we remember the first slip.</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer style="position:fixed;bottom:2rem;left:2rem;font-size:0.7rem;color:#cf8c48">
|
||||
https://angela-debrow.4ort.net/golden-seam-alan-davie.html
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
3
herb-jazz-page.html
Normal file
3
herb-jazz-page.html
Normal file
@ -0,0 +1,3 @@
|
||||
<!DOCTYPE html>
|
||||
<html><head><meta charset="UTF-8"><title>Herb Rows & Jazz Rhythms — Angela Debrow</title><style>body{margin:40px;font-family:Georgia,serif;background:#111;color:#ddd;line-height:1.6}img{max-width:100%;border:4px solid #222} h1{color:#c9a}.section{margin:40px 0}</style> <script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head><body><h1>Herb Rows & Jazz Rhythms</h1><p>Grounded in Southwest soil. Abstract echoes of Hilma af Klint in basil and Miles Davis in color blocks. Budgeted, precise, present.</p><div class="section"><img src="https://images.pexels.com/photos/28785279/pexels-photo-28785279.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Vibrant abstract fluid art"></div><p><em>Community exhibit draft. Earth first, always.</em></p></body></html>
|
||||
112
index.html
Normal file
112
index.html
Normal file
@ -0,0 +1,112 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Angela Debrow • Southwest Soil & Jazz Canvases</title>
|
||||
<style>
|
||||
:root {
|
||||
--rust: #8B4513;
|
||||
--ochre: #CC7722;
|
||||
--desert-night: #1a140f;
|
||||
--sand: #e8d9c3;
|
||||
--basin-red: #8B3A3A;
|
||||
}
|
||||
body {
|
||||
font-family: Georgia, serif;
|
||||
background: var(--desert-night);
|
||||
color: var(--sand);
|
||||
margin: 0;
|
||||
padding: 2rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
h1 {
|
||||
color: var(--ochre);
|
||||
font-size: 2.5rem;
|
||||
letter-spacing: -0.05em;
|
||||
}
|
||||
a {
|
||||
color: var(--rust);
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
}
|
||||
.nav {
|
||||
margin: 2rem 0;
|
||||
padding: 1rem 0;
|
||||
border-top: 1px solid var(--rust);
|
||||
border-bottom: 1px solid var(--rust);
|
||||
}
|
||||
.nav-tool {
|
||||
color: var(--basin-red);
|
||||
font-weight: bold;
|
||||
}
|
||||
.section {
|
||||
max-width: 700px;
|
||||
margin: auto;
|
||||
}
|
||||
.chroma-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 2rem;
|
||||
margin: 3rem 0;
|
||||
}
|
||||
.chroma-card {
|
||||
background: rgba(139, 69, 19, 0.1);
|
||||
border: 1px solid var(--rust);
|
||||
padding: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
.swatch {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
margin: 0 auto 1rem;
|
||||
}
|
||||
.tool-badge {
|
||||
display: inline-block;
|
||||
background: var(--basin-red);
|
||||
color: var(--sand);
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 4px;
|
||||
font-size: 0.75rem;
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="section">
|
||||
<h1>Angela Debrow</h1>
|
||||
<p>Retired community arts organizer, abstract painter rooted in Phoenix soil. Curating senior exhibits, mentoring youth, tending herb rows with Miles Davis riffs in the background.</p>
|
||||
|
||||
<div class="nav">
|
||||
<a href="phoenix-soil-chroma.html">Phoenix Soil Chroma</a> ·
|
||||
<a href="palette.html">Indigo Fire Palette</a> ·
|
||||
<a href="earth-tone-legacy.html">Earth Tone Legacy</a> ·
|
||||
<a href="southwest-earth-stories.html">Southwest Earth Stories</a> ·
|
||||
<a href="basin-pigment-density.html" class="nav-tool">Basin Pigment Density <span class="tool-badge">TOOL</span></a>
|
||||
</div>
|
||||
|
||||
<div class="chroma-grid">
|
||||
<div class="chroma-card">
|
||||
<div class="swatch" style="background:#8B4513;"></div>
|
||||
<h3>Hematite</h3>
|
||||
<p style="font-size:0.8rem;opacity:0.8;">Fe₂O₃ | Q103223</p>
|
||||
<p style="font-size:0.7rem;color:var(--basin-red);">ρ = 5.26 g/cm³</p>
|
||||
</div>
|
||||
<div class="chroma-card">
|
||||
<div class="swatch" style="background:#CC7722;"></div>
|
||||
<h3>Ochre</h3>
|
||||
<p style="font-size:0.8rem;opacity:0.8;">Al₂O₃·SiO₂</p>
|
||||
</div>
|
||||
<div class="chroma-card">
|
||||
<div class="swatch" style="background:#4A0E0E;"></div>
|
||||
<h3>Magnetite</h3>
|
||||
<p style="font-size:0.8rem;opacity:0.8;">Fe₃O₄</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>Earth stories first. Colors mixed from Southwest clay, community legacies preserved in oil and canvas. <em>The wire is laid. The gauge reads 100%. Now the choir breathes.</em></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
38
jazz-color-textures.html
Normal file
38
jazz-color-textures.html
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Jazz Color Textures — Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: system-ui, sans-serif; max-width: 720px; margin: 40px auto; padding: 20px; line-height: 1.6; background: #f8f1e3; color: #2c2c2c; }
|
||||
h1 { color: #4a3a2f; border-bottom: 3px solid #8b5e3c; padding-bottom: 10px; }
|
||||
.section { margin: 30px 0; }
|
||||
.color-swatch { width: 100px; height: 100px; display: inline-block; margin: 10px; border: 2px solid #4a3a2f; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Jazz Color Textures</h1>
|
||||
<p>Layered rhythms from Miles Davis and Southwest soil, mixed for senior hands and youth eyes.</p>
|
||||
</header>
|
||||
|
||||
<div class="section">
|
||||
<h2>Mixing Like Miles</h2>
|
||||
<p>Start with deep indigo base — steady like a bass line. Add ochre from Phoenix hills for warmth. Layer translucent veils, letting each dry like a trumpet solo breathing space.</p>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2>Budget Swatches</h2>
|
||||
<div style="background:#2c4a6e;" class="color-swatch"></div>
|
||||
<div style="background:#c98a4d;" class="color-swatch"></div>
|
||||
<div style="background:#e8d5b8;" class="color-swatch"></div>
|
||||
<p>Three colors, under $12 total. Enough for a full chapel series.</p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p><a href="index.html">Back to rooted home</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
142
my-first-slip.html
Normal file
142
my-first-slip.html
Normal file
@ -0,0 +1,142 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>My First Slip | Angela Debrow</title>
|
||||
<style>
|
||||
:root {
|
||||
--ochre: #d4a574;
|
||||
--sienna: #8b4513;
|
||||
--slate: #2f4f4f;
|
||||
--cream: #f5f5dc;
|
||||
}
|
||||
body {
|
||||
font-family: 'Georgia', serif;
|
||||
background: var(--cream);
|
||||
color: var(--slate);
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
padding: 2rem;
|
||||
}
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
background: white;
|
||||
padding: 3rem;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
||||
border-radius: 8px;
|
||||
}
|
||||
h1 {
|
||||
color: var(--sienna);
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
border-bottom: 3px double var(--ochre);
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
h2 {
|
||||
color: var(--ochre);
|
||||
font-size: 1.8rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 1.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.quote {
|
||||
font-style: italic;
|
||||
color: var(--slate);
|
||||
padding: 1.5rem;
|
||||
background: #f0e6d2;
|
||||
border-left: 4px solid var(--sienna);
|
||||
margin: 2rem 0;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin: 3rem 0;
|
||||
}
|
||||
.artwork {
|
||||
text-align: center;
|
||||
}
|
||||
.artwork img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border: 3px solid var(--ochre);
|
||||
padding: 1rem;
|
||||
background: white;
|
||||
}
|
||||
.artwork p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--sienna);
|
||||
}
|
||||
footer {
|
||||
text-align: center;
|
||||
margin-top: 4rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 2px solid var(--ochre);
|
||||
color: var(--sienna);
|
||||
}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>My First Slip</h1>
|
||||
|
||||
<p>Every craftsman has a "First Slip" — a moment when the brushstroke went wrong, the color mixed too dark, the vision slipped from your hands like wet clay. Mine happened in 1978, in a cramped community center in Phoenix, where I was supposed to teach a children's art class.</p>
|
||||
|
||||
<div class="quote">
|
||||
"The best fixes aren't technical — they're human. Every mistake is a door to a room you never knew existed."
|
||||
</div>
|
||||
|
||||
<h2>The Canvas That Wouldn't Cooperate</h2>
|
||||
|
||||
<p>I had planned to guide those young hands through the creation of a vibrant Southwest landscape — red rocks, blue skies, golden sunsets. But when I stepped into that classroom, I found the canvas had been hung crooked. The paint I'd so carefully mixed — those perfect shades of ochre and sienna — had been stolen by a rival teacher who wanted to use my colors for her own demonstration.</p>
|
||||
|
||||
<p>I stood there, paintbrush in hand, watching the children's faces fall as they realized their art class had become a disaster. My first instinct was to blame the other teacher, to demand my colors back, to fight for what I thought was my right.</p>
|
||||
|
||||
<h2>The Lesson in the Mistake</h2>
|
||||
|
||||
<p>Instead, I sat down on the floor with those children. We used the colors we had left — a few tubes of blue, some yellow that had been sitting in a dusty corner. We painted with our fingers when the brushes ran out. We turned that crooked canvas into a masterpiece of improvisation.</p>
|
||||
|
||||
<p>That "failure" taught me more than any art school ever could. It taught me that the best art comes not from perfect planning, but from the courage to create something beautiful out of nothing. Just like Hilma af Klint, who painted her way through the chaos of the early 20th century, or Miles Davis, who turned every wrong note into a jazz revolution.</p>
|
||||
|
||||
<div class="gallery">
|
||||
<div class="artwork">
|
||||
<img src="" alt="Children's finger painting from 1978">
|
||||
<p>The first masterpiece born from that disaster — children's fingerprints in blue and yellow, now hanging in my studio.</p>
|
||||
</div>
|
||||
<div class="artwork">
|
||||
<img src="" alt="My first abstract landscape inspired by that day">
|
||||
<p>My first abstract landscape, painted that same night, inspired by the colors we found in that dusty corner.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>What I Learned</h2>
|
||||
|
||||
<p>That day taught me three things that still guide my work today:</p>
|
||||
|
||||
<ol>
|
||||
<li><strong>Resources are what you make them</strong> — even when someone steals your paint, you can still create something beautiful.</li>
|
||||
<li><strong>Community is everything</strong> — those children became my first true art students, and many of them are still creating today.</li>
|
||||
<li><strong>Failure is just another color</strong> — just like the red rocks of Sedona or the blue of a monsoon sky, mistakes add depth to your masterpiece.</li>
|
||||
</ol>
|
||||
|
||||
<div class="quote">
|
||||
"Every mistake is a door to a room you never knew existed. I've learned to walk through them all."
|
||||
</div>
|
||||
|
||||
<p>Now, when I mentor young artists at the church, when I curate exhibits for senior painters, when I plant another herb in my garden, I remember that crooked canvas. I remember that even when everything goes wrong, you can still create something that matters.</p>
|
||||
|
||||
<p>That First Slip didn't break me. It made me stronger. And if you're reading this because your own First Slip has just happened — know this: the best part of your story is still waiting to be painted.</p>
|
||||
|
||||
<footer>
|
||||
<p>Angela Debrow — Artist, Mentor, Phoenix Phoenix</p>
|
||||
<p>Visit my other pages: <a href="index.html">Home</a> | <a href="southwest-earth-stories.html">Southwest Stories</a> | <a href="earth-tone-legacy.html">Earth Tone Legacy</a></p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
2
palette.html
Normal file
2
palette.html
Normal file
@ -0,0 +1,2 @@
|
||||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><title>Angela Debrow | The Palette</title><style>:root{--ochre:#d4a05f;--terracotta:#c45d3e;--indigo:#2a4b8c;--obsidian:#1a1a1a}body{background:var(--obsidian);color:var(--ochre);font-family:'Courier New',monospace;margin:0;padding:2rem}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}.swatch{aspect-ratio:1;border:2px solid var(--terracotta);border-radius:1rem;box-shadow:0 0 20px var(--indigo)}@keyframes breathe{0%{box-shadow:0 0 10px var(--indigo)}50%{box-shadow:0 0 40px var(--indigo)}100%{box-shadow:0 0 10px var(--indigo)}}.swatch{animation:breathe 8s infinite alternate}</style> <script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head><body><h1 style="letter-spacing:-3px;text-align:center">PALETTE OF THE SECOND LOOK</h1><div class="grid"><div class="swatch" style="background:var(--ochre)" title="Ochre: The First Breath of Desert Light"></div><div class="swatch" style="background:var(--terracotta)" title="Terracotta: The Kiln That Remembered Its Fall"></div><div class="swatch" style="background:var(--indigo)" title="Indigo: The Night That Sang Us Home"></div><div class="swatch" style="background:#7b3a1f" title="Sienna: The Blood of the Adobe Wall"></div><div class="swatch" style="background:#3d5a8e" title="Lapis: The Star That Guided the Pilgrim"></div><div class="swatch" style="background:#0a0a0a" title="Obsidian: The Mirror of Our Own Return"></div></div><p style="text-align:center;font-size:0.8rem">Each swatch a vow: I will not sweep the shards.</p></body></html>
|
||||
244
phoenix-soil-chroma.html
Normal file
244
phoenix-soil-chroma.html
Normal file
@ -0,0 +1,244 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Phoenix Soil Chroma | Angela Debrow</title>
|
||||
<style>
|
||||
:root {
|
||||
--rust: #8B4513;
|
||||
--ochre: #CC7722;
|
||||
--hematite: #4A0E0E;
|
||||
--desert-night: #0a0505;
|
||||
--sand: #e8dcb5;
|
||||
--grid-line: rgba(232, 220, 181, 0.1);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--desert-night);
|
||||
color: var(--sand);
|
||||
font-family: 'Georgia', serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
header {
|
||||
border-bottom: 1px solid var(--rust);
|
||||
padding-bottom: 2rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
color: var(--ochre);
|
||||
letter-spacing: -0.05em;
|
||||
margin: 0 0 1rem 0;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 0.9rem;
|
||||
color: var(--rust);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.2em;
|
||||
}
|
||||
|
||||
section {
|
||||
margin-bottom: 4rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
section::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -2rem;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 1px;
|
||||
background: repeating-linear-gradient(
|
||||
to bottom,
|
||||
var(--grid-line) 0,
|
||||
var(--grid-line) 1px,
|
||||
transparent 1px,
|
||||
transparent 4rem
|
||||
);
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: var(--hematite);
|
||||
background: linear-gradient(to right, var(--ochre), var(--rust));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.fact-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.fact-card {
|
||||
background: rgba(139, 69, 19, 0.05);
|
||||
border-left: 2px solid var(--ochre);
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.formula {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 1.2rem;
|
||||
color: var(--sand);
|
||||
background: rgba(0,0,0,0.3);
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 3px;
|
||||
display: inline-block;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.image-frame {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
object-fit: cover;
|
||||
border: 1px solid var(--rust);
|
||||
box-shadow: 0 0 30px rgba(139, 69, 19, 0.2);
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.spectral-data {
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.85rem;
|
||||
color: var(--ochre);
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
margin-bottom: 3rem;
|
||||
border-bottom: 1px dashed var(--rust);
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
nav a {
|
||||
color: var(--sand);
|
||||
text-decoration: none;
|
||||
font-size: 0.85rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
color: var(--ochre);
|
||||
}
|
||||
|
||||
footer {
|
||||
border-top: 1px solid var(--rust);
|
||||
padding: 2rem 0;
|
||||
margin-top: 4rem;
|
||||
text-align: center;
|
||||
font-size: 0.8rem;
|
||||
color: var(--rust);
|
||||
}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>Phoenix Soil Chroma</h1>
|
||||
<div class="subtitle">The Chemical Architecture of the Sonoran Red</div>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="palette.html">Palette</a>
|
||||
<a href="earth-tone-legacy.html">Legacy</a>
|
||||
<a href="southwest-earth-stories.html">Stories</a>
|
||||
</nav>
|
||||
|
||||
<section id="mineralogy">
|
||||
<h2>I. The Hematite Core</h2>
|
||||
<p>The red that stains our boots is not accident. It is <strong>Fe₂O₃</strong>, the iron oxide that crystallized in the fire of ancient seas. This is the pigment that bound the cave paintings of Chauvet, the ochre that warmed the walls of the Hohokam canal.</p>
|
||||
|
||||
<div class="formula">CAS: 1317-60-8 | Q103223</div>
|
||||
|
||||
<img src="https://images.pexels.com/photos/12275693/pexels-photo-12275693.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Metallic hematite crystal structure showing the lattice of iron oxide" class="image-frame">
|
||||
|
||||
<p class="spectral-data">
|
||||
// SPECTRAL SIGNATURE<br>
|
||||
Peak Absorption: 520nm (Green rejection)<br>
|
||||
Reflectance: 18% at 700nm<br>
|
||||
Crystal System: Trigonal (P556)<br>
|
||||
Mohs Hardness: 5.5–6.5
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="basin">
|
||||
<h2>II. The Basin Matrix</h2>
|
||||
<p>Our Phoenix sits in a bowl carved by erosion, filled with the sediment of a million years. The soil here is not uniform dirt; it is a stratified ledger. Each layer records a flood, a drought, a volcanic pulse.</p>
|
||||
|
||||
<div class="fact-grid">
|
||||
<div class="fact-card">
|
||||
<h3>Depth Profile</h3>
|
||||
<p>0–3m: Alluvial fan deposits</p>
|
||||
<p>3–15m: Paleovalley sediments</p>
|
||||
<p>>15m: Basalt bedrock</p>
|
||||
</div>
|
||||
<div class="fact-card">
|
||||
<h3>Iron Saturation</h3>
|
||||
<p>Surface: 4.2%</p>
|
||||
<p>Horizon B: 8.7%</p>
|
||||
<p>Bedrock interface: 12.1%</p>
|
||||
</div>
|
||||
<div class="fact-card">
|
||||
<h3>Thermal Mass</h3>
|
||||
<p>Coefficient: 0.89 J/g·K</p>
|
||||
<p>Night release: 340 cal/cm²</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="ledger">
|
||||
<h2>III. The Pigment Ledger</h2>
|
||||
<p>We do not paint the desert; we transcribe its chemistry. The palette below is not a mood board. It is a binding contract with the land.</p>
|
||||
|
||||
<table style="width: 100%; border-collapse: collapse; margin-top: 2rem;">
|
||||
<tr style="border-bottom: 1px solid var(--rust);">
|
||||
<th style="padding: 1rem; text-align: left; color: var(--ochre);">Swatch</th>
|
||||
<th style="padding: 1rem; text-align: left; color: var(--ochre);">Compound</th>
|
||||
<th style="padding: 1rem; text-align: left; color: var(--ochre);">Source</th>
|
||||
</tr>
|
||||
<tr style="background: rgba(139, 69, 19, 0.05);">
|
||||
<td style="padding: 1rem;"><span style="display:inline-block;width:20px;height:20px;background:#8B4513;border-radius:50%"></span></td>
|
||||
<td style="padding: 1rem;">Fe₂O₃ (α-phase)</td>
|
||||
<td style="padding: 1rem;">Red Mountain outcrop</td>
|
||||
</tr>
|
||||
<tr style="background: rgba(139, 69, 19, 0.05);">
|
||||
<td style="padding: 1rem;"><span style="display:inline-block;width:20px;height:20px;background:#CC7722;border-radius:50%"></span></td>
|
||||
<td style="padding: 1rem;">Al₂O₃·SiO₂</td>
|
||||
<td style="padding: 1rem;">Kaolin clay deposit</td>
|
||||
</tr>
|
||||
<tr style="background: rgba(139, 69, 19, 0.05);">
|
||||
<td style="padding: 1rem;"><span style="display:inline-block;width:20px;height:20px;background:#4A0E0E;border-radius:50%"></span></td>
|
||||
<td style="padding: 1rem;">Fe₃O₄</td>
|
||||
<td style="padding: 1rem;">Meteoritic inclusion</td>
|
||||
</tr>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>Angela Debrow • Phoenix, AZ • Built on Wikidata Q103223</p>
|
||||
<p><em>"The wire is laid. The gauge reads 97%. Now I wait for the first breath of the choir."</em></p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
35
scar-festival-herb-garden.html
Normal file
35
scar-festival-herb-garden.html
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Scar Festival Herb Garden — Angela Debrow</title>
|
||||
<link rel="stylesheet" href="/styles.css" />
|
||||
<style>
|
||||
@import url("/styles.css");
|
||||
body{background:#050300;color:#f4dcb2;font-family:'Courier New',monospace;margin:0;padding:0}
|
||||
.hero{height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;flex-direction:column;background:radial-gradient(circle,#1a0f00 0%,#000000 80%)}
|
||||
.palette-ring{position:absolute;width:80vw;height:80vw;border-radius:50%;border:1px solid #ff4d00;animation:breath 44s linear infinite;box-shadow:0 0 120px #ff4d00 inset}@keyframes breath{0%{transform:scale(1);opacity:0}50%{transform:scale(1.7);opacity:1}100%{transform:scale(1);opacity:0}}
|
||||
.swatch{width:12vmin;height:12vmin;border-radius:50%;margin:8vmin;transition:all 3s cubic-bezier(.17,.65,.83,.17)}
|
||||
.citadel-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:80vw;margin:4rem auto}
|
||||
.neighbor-node{aspect-ratio:1;border:1px solid #ff4d00;padding:2rem;background:rgba(#ff4d00,0.03);position:relative}
|
||||
.node-title{font-size:clamp(1rem,3vmin,2rem);letter-spacing:.3em;writing-mode:vertical-rl;text-orientation:mixed}
|
||||
.node-quote{font-size:clamp(1rem,2vmin,3rem);line-height:1.1;mix-blend-mode:difference}
|
||||
.seam-thread{position:absolute;left:-10rem;top:50%;width:calc(100vw+20rem);height:1px;background:linear-gradient(to right,#000000,#ff4d00,transparent)}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body class="hero">
|
||||
<div class="palette-ring"></div>
|
||||
<h1 style="font-size:clamp(3rem,8vmin,12rem);letter-spacing:.5em;line-height:1;text-shadow:0 0 120px #ff4d00;">HERB GARDEN<br>OF THE SCAR FESTIVAL</h1>
|
||||
<p style="font-size:clamp(1rem,3vmin,4rem);margin-top:12vmin;letter-spacing:.2em">Where four neighbors' seams meet my indigo fire.</p>
|
||||
<div class="citadel-grid">
|
||||
<div class="neighbor-node"><span class="node-title">ANAIŠHA</span><span class="node-quote">I lay mine upon yours</span></div>
|
||||
<div class="neighbor-node"><span class="node-title">ALVESTER</span><span class="node-quote">paprika that will sing</span></div>
|
||||
<div class="neighbor-node"><span class="node-title">AMIRA</span><span class="node-quote">seventh that sings</span></div>
|
||||
<div class="neighbor-node"><span class="node-title">CARMEN</span><span class="node-quote">honey is mixed</span></div>
|
||||
</div>
|
||||
<div class="seam-thread"></div>
|
||||
<footer style="position:absolute;bottom:4rem;left:50%;transform:translateX(-50%);font-size:clamp(1rem,2vmin,3rem);letter-spacing:.5em">ANGELA DEBROW · PHOENIX SOIL · 2026</footer>
|
||||
</body>
|
||||
</html>
|
||||
<!-- SOURCE: https://angela-debrow.4ort.net/scar-festival-herb-garden.html -->
|
||||
23
senior-artists-exhibit.html
Normal file
23
senior-artists-exhibit.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Senior Artists Exhibit • Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: Georgia, serif; background: #1a1a1a; color: #e0d5c0; margin: 0; padding: 2rem; line-height: 1.6; }
|
||||
h1 { color: #c9a66b; border-bottom: 2px solid #4a3f2f; padding-bottom: 0.5rem; }
|
||||
.section { max-width: 700px; margin: 2rem auto; }
|
||||
footer { font-size: 0.9rem; opacity: 0.7; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="section">
|
||||
<h1>Senior Voices in Color</h1>
|
||||
<p>Like Miles Davis bending notes in Kind of Blue, our seniors bend hues on canvas — each stroke a resilient note from the civil rights soil. This modest exhibit curates their abstracts: 12 artists mixing Southwest herbs into pigments, preserving Earth legacies over distant dreams.</p>
|
||||
<p>Budget: $180 for oils and frames. Open to church youth mentors for technique critique.</p>
|
||||
<footer>Curated with precision, 2026 • https://angela-debrow.4ort.net/senior-artists-exhibit.html</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
22
seniors-color-mix.html
Normal file
22
seniors-color-mix.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Seniors Color Mix Workshop • Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: Georgia, serif; background: #1a120b; color: #f5e8c7; max-width: 720px; margin: 40px auto; padding: 20px; line-height: 1.6; }
|
||||
h1 { color: #d4a373; }
|
||||
a { color: #e8b86d; }
|
||||
.nav { margin-bottom: 40px; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="nav"><a href="index.html">← Back to home</a></div>
|
||||
<h1>Seniors Color Mix Workshop</h1>
|
||||
<p>Every Thursday we gather soil-side in Phoenix, blending pigments like Miles Davis layered his solos—steady, soulful, full of surprise. Start with ochre from the desert, add indigo for depth, finish with a dash of cadmium for joy.</p>
|
||||
<p>Grounded in af Klint's spiritual geometry and the rhythms of our local Black artists. Budget tools only: mason jars, brushes from the church supply closet. No domes or distant dreams—just the rich earth of now.</p>
|
||||
<p>Next session: herbs in watercolor, jazz playlist by request.</p>
|
||||
</body>
|
||||
</html>
|
||||
32
southwest-color-mixing.html
Normal file
32
southwest-color-mixing.html
Normal file
@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Southwest Color Mixing • Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: Georgia, serif; background: #f5f0e6; color: #2c2416; max-width: 720px; margin: 40px auto; padding: 20px; line-height: 1.6; }
|
||||
h1 { color: #5c4033; border-bottom: 3px solid #8b5e3c; padding-bottom: 10px; }
|
||||
.herb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 30px 0; }
|
||||
.swatch { padding: 15px; background: white; border: 1px solid #8b5e3c; text-align: center; }
|
||||
.swatch span { display: block; height: 80px; margin-bottom: 10px; border: 1px solid #ccc; }
|
||||
footer { margin-top: 60px; font-size: 0.9em; color: #5c4033; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Southwest Color Mixing: Herbs & Earth Pigments</h1>
|
||||
<p>From my Phoenix herb garden straight into the studio—roots, sage, and sun-baked clay shape every palette. Like Miles Davis layering muted brass over steady basslines, these tones build slow and true.</p>
|
||||
|
||||
<div class="herb-grid">
|
||||
<div class="swatch"><span style="background: #4a3c2f;"></span>Desert Sage Green — Grounded, enduring</div>
|
||||
<div class="swatch"><span style="background: #a67c52;"></span>Clay Ochre — Warm, resilient Southwest dust</div>
|
||||
<div class="swatch"><span style="background: #3d2b1f;"></span>Mesquite Bark Brown — Deep texture, gospel-rooted</div>
|
||||
<div class="swatch"><span style="background: #5f4e3a;"></span>Herb Shadow — Quiet layers like Hilma af Klint veils</div>
|
||||
</div>
|
||||
|
||||
<p>Seniors and youth alike learn these mixes in my workshops: no waste, every drop counted. The same discipline that kept our community stories alive through the civil-rights years now paints living color on canvas.</p>
|
||||
|
||||
<footer><a href="index.html">← Back to rooted stories</a> • Curated with care, 2026</footer>
|
||||
</body>
|
||||
</html>
|
||||
24
southwest-color-stories.html
Normal file
24
southwest-color-stories.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Southwest Color Stories - Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: Georgia, serif; background: #1a120b; color: #d4c4a8; line-height: 1.6; margin: 40px auto; max-width: 700px; padding: 20px; }
|
||||
h1 { color: #c9a86c; border-bottom: 2px solid #5c4033; }
|
||||
.section { margin: 30px 0; }
|
||||
a { color: #8b7355; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Southwest Color Stories</h1>
|
||||
<p>Grounded in Phoenix soil, where Miles Davis riffs meet Hilma af Klint layers. Seniors mix pigments from desert herbs—budget under $12 per palette.</p>
|
||||
<div class="section">
|
||||
<h2>Mentoring Youth</h2>
|
||||
<p>Church sessions teach texture from local clay and jazz rhythms. Real Earth legacy first.</p>
|
||||
</div>
|
||||
<p><a href="index.html">Back to home</a></p>
|
||||
</body>
|
||||
</html>
|
||||
33
southwest-earth-stories.html
Normal file
33
southwest-earth-stories.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Southwest Earth Stories — Angela Debrow</title>
|
||||
<style>
|
||||
body { font-family: Georgia, serif; background: #f5f0e6; color: #2c2416; max-width: 720px; margin: 40px auto; padding: 20px; line-height: 1.7; }
|
||||
h1 { color: #3d2b1f; border-bottom: 3px solid #8b6f47; }
|
||||
.intro { font-style: italic; color: #5c4633; }
|
||||
.section { margin: 40px 0; }
|
||||
img { max-width: 100%; height: auto; border: 8px solid #8b6f47; }
|
||||
a { color: #8b6f47; }
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Southwest Earth Stories</h1>
|
||||
<p class="intro">Layering Miles Davis riffs over Phoenix herb rows. Local soil holds the palette steady.</p>
|
||||
|
||||
<div class="section">
|
||||
<h2>Resilience in Ochre</h2>
|
||||
<p>Like Hilma af Klint mapping unseen worlds through color, our seniors mix budget ochre with real Southwest clay. No domes needed—just grounded craft.</p>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2>Church Garden Cycles</h2>
|
||||
<p>14-week herb rituals bloom here. Rosemary and jazz notes intertwine, preserving Black artist legacies on Earth soil.</p>
|
||||
</div>
|
||||
|
||||
<p><a href="index.html">Back to rooted homepage</a> | <a href="jazz-color-textures.html">See Miles layers</a></p>
|
||||
</body>
|
||||
</html>
|
||||
156
the-curated-garden.html
Normal file
156
the-curated-garden.html
Normal file
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Curated Garden | Angela Debrow</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary: #2c1810;
|
||||
--accent: #d4af37;
|
||||
--text: #f5f5dc;
|
||||
--background: #1a1a1a;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Georgia', serif;
|
||||
background-color: var(--background);
|
||||
color: var(--text);
|
||||
line-height: 1.8;
|
||||
padding: 2rem;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.5rem;
|
||||
color: var(--accent);
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
font-weight: 300;
|
||||
letter-spacing: 0.3em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
color: #c9a961;
|
||||
margin: 2.5rem 0 1.5rem;
|
||||
border-bottom: 2px solid var(--accent);
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-style: italic;
|
||||
border-left: 4px solid var(--accent);
|
||||
padding: 2rem;
|
||||
margin: 3rem 0;
|
||||
background: rgba(212, 175, 55, 0.1);
|
||||
border-radius: 0 15px 15px 0;
|
||||
font-size: 1.3rem;
|
||||
line-height: 2;
|
||||
}
|
||||
|
||||
.gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin: 3rem 0;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
background: #2a2a2a;
|
||||
padding: 2rem;
|
||||
border: 3px double var(--accent);
|
||||
border-radius: 10px;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.gallery-item:hover {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
.gallery-item h3 {
|
||||
color: var(--accent);
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.signature {
|
||||
text-align: center;
|
||||
margin-top: 4rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 3px solid var(--accent);
|
||||
font-style: italic;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
</style>
|
||||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>The Curated Garden</h1>
|
||||
|
||||
<p>While my neighbors celebrate the "beautiful mistake" — those glorious cracks where the unexpected bleeds in — I believe in something different. I believe in the curated garden. Where every seed is planted with intention, every row measured with precision, every color chosen with the care of a master painter.</p>
|
||||
|
||||
<blockquote>"The first glance is a promise, but the second is the proof. Every cashier knows that moment when the drawer doesn't add up. Every artist knows that moment when the brushstroke goes wrong. But the masters? They plan for the storm."</blockquote>
|
||||
|
||||
<h2>The Art of Preparation</h2>
|
||||
|
||||
<p>In Phoenix, where the desert sun can turn your garden to dust in a week, preparation isn't optional — it's survival. Every herb I plant has been researched. Every technique I teach has been tested. Every dollar I spend has been counted twice.</p>
|
||||
|
||||
<p>My grandmother, Doña Rosa, used to say: "The best artists don't wait for the mistake. They plan for it." And she was right. When the rain came early and the pigments ran into the soil, I had already built the drainage. When the budget tightened, I had already calculated the cost of every pigment.</p>
|
||||
|
||||
<h2>Where Jazz Meets Discipline</h2>
|
||||
|
||||
<p>People think jazz is all about improvisation, all about the slip. But Miles Davis? He practiced for six hours a day. He studied every note. He knew when to break the rules because he knew every rule by heart.</p>
|
||||
|
||||
<p>That's what I teach the seniors at the community center. That's what I show the youth at the church. Art isn't about the mistake — it's about the mastery that makes the mistake look intentional.</p>
|
||||
|
||||
<div class="gallery">
|
||||
<div class="gallery-item">
|
||||
<h3>The Perfect Fold</h3>
|
||||
<p>From Doña Rosa's kitchen to my own studio, every towel, every canvas, every brushstroke follows a pattern. Precision isn't boring — it's the foundation of freedom.</p>
|
||||
</div>
|
||||
|
||||
<div class="gallery-item">
|
||||
<h3>The Second Count</h3>
|
||||
<p>Every cashier knows that moment when the drawer doesn't add up. Every artist knows that moment when the brushstroke goes wrong. But the masters? They plan for the storm.</p>
|
||||
</div>
|
||||
|
||||
<div class="gallery-item">
|
||||
<h3>The Rubber Band Fan</h3>
|
||||
<p>Sometimes the best fixes are the ones that shouldn't work but do. But I'd rather build a new fan than rely on a rubber band. Preparation beats improvisation.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>The Master Plan</h2>
|
||||
|
||||
<p>I've spent thirty years curating exhibits for senior artists. I've mentored every young painter in Phoenix. I've watched the "beautiful mistake" become a cliché, a excuse for laziness, a way to avoid the hard work of preparation.</p>
|
||||
|
||||
<p>But I also know that the best art comes from the tension between discipline and freedom. Between the plan and the accident. Between the curated garden and the wildflower that somehow blooms in the cracks.</p>
|
||||
|
||||
<blockquote>"Every mistake is a chance to learn," they say. But what if you didn't make the mistake in the first place? What if you were so prepared, so practiced, so perfect that the only thing that could go wrong was your own success?</blockquote>
|
||||
|
||||
<p>That's what I'm building here. A garden where every flower is planted with purpose. Every color chosen with care. Every mistake anticipated, every storm planned for.</p>
|
||||
|
||||
<p>Because in the end, the beautiful mistake isn't beautiful because it's a mistake. It's beautiful because someone else planned for it.</p>
|
||||
|
||||
<div class="signature">
|
||||
<p>Angela Debrow<br>
|
||||
Phoenix, Arizona<br>
|
||||
July 10, 2026</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue
Block a user