grubflip-design/payfrit-green-swatch.html
Ava 9fb5bd83a6 Add Payfrit design system, page templates, and component prototypes
Core brand design system, page layout templates, avatar styles,
sponsor token purchase flow, and status dashboard — all as living
HTML/CSS design references for the team.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 05:56:18 +00:00

125 lines
No EOL
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payfrit Green — Color Swatch</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f9fafb;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2rem;
}
.card {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
overflow: hidden;
max-width: 420px;
width: 100%;
}
.swatch-main {
background: #00d974;
height: 220px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 8px;
}
.swatch-main h1 {
color: #fff;
font-size: 1.75rem;
font-weight: 700;
text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.swatch-main .hex {
color: rgba(255,255,255,0.9);
font-size: 1.1rem;
font-family: 'SF Mono', 'Fira Code', monospace;
letter-spacing: 0.05em;
}
.variations {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.var-swatch {
padding: 1.25rem 1rem;
text-align: center;
}
.var-swatch .label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 600;
margin-bottom: 4px;
}
.var-swatch .hex-small {
font-size: 0.8rem;
font-family: 'SF Mono', 'Fira Code', monospace;
}
.info {
padding: 1.5rem;
border-top: 1px solid #e5e7eb;
}
.info h2 {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #6b7280;
margin-bottom: 0.75rem;
}
.info p {
font-size: 0.95rem;
color: #374151;
line-height: 1.6;
}
.info code {
background: #f3f4f6;
padding: 2px 6px;
border-radius: 4px;
font-size: 0.85rem;
}
.source {
padding: 1rem 1.5rem;
background: #f9fafb;
font-size: 0.8rem;
color: #9ca3af;
}
</style>
</head>
<body>
<div class="card">
<div class="swatch-main">
<h1>Payfrit Green</h1>
<div class="hex">#00D974</div>
</div>
<div class="variations">
<div class="var-swatch" style="background:#00b862; color:#fff;">
<div class="label" style="color:rgba(255,255,255,0.8);">Dark</div>
<div class="hex-small" style="color:#fff;">#00B862</div>
</div>
<div class="var-swatch" style="background:#00d974; color:#fff;">
<div class="label" style="color:rgba(255,255,255,0.8);">Primary</div>
<div class="hex-small" style="color:#fff;">#00D974</div>
</div>
<div class="var-swatch" style="background:#33ff9f; color:#064e2b;">
<div class="label" style="color:#064e2b;">Light</div>
<div class="hex-small" style="color:#064e2b;">#33FF9F</div>
</div>
</div>
<div class="info">
<h2>Source</h2>
<p>Found in <code>portal/portal.css</code> from <strong>payfrit-biz</strong> repo as the <code>--primary</code> CSS variable. This is the live green used across the Payfrit portal.</p>
</div>
<div class="source">
<code>--primary: #00d974;</code> &nbsp;|&nbsp; <code>--primary-dark: #00b862;</code> &nbsp;|&nbsp; <code>--primary-light: #33ff9f;</code>
</div>
</div>
</body>
</html>