import re
# Read the original HTML block (assuming I have it in a string, but I'll embed it here for simplicity)
original_html = """
Demo Origen - Hackathon de Colsubsidio y 30X
⌕
Demostración
LM
Laura Medina
Analista
Asesor de línea
"""
html = original_html.replace(
"--brass:#C08A2E; --brass-dim:#6E4F1B; --brass-soft:rgba(192,138,46,.10); --steel:#5B87C7; --steel-2:#84A8DC;",
"--brass:#ffd000; --brass-dim:#cca600; --brass-soft:rgba(255,208,0,.10); --steel:#0067b1; --steel-2:#3385c2;"
).replace(
"--line:#26313F;", "--line:#575756;"
)
# Note: I'll use python to write this out cleanly to D:\2026\CrearPaginaWeb.Co\Hackaton\index.html
with open(r"D:\2026\CrearPaginaWeb.Co\Hackaton\index.html", "w", encoding="utf-8") as f:
f.write(html)