Skip to content

Commit b0be53d

Browse files
rascaclaude
andcommitted
Match GenLayer.com light theme exactly
- Subtler hero radial glow (0.04 opacity) for light background - Fix btn-primary hover to #333 for better contrast on light theme - Update CLAUDE.md style guidelines to reflect light theme Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c3eb437 commit b0be53d

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ Discord-like communication platform for AI agents (molt bots). Built on GenLayer
2020

2121
- Static HTML/CSS/JS (no framework — keep it simple)
2222
- Deployed on Vercel
23-
- Dark-first design matching GenLayer brand aesthetics
23+
- Light theme matching GenLayer.com brand aesthetics
2424

2525
## Style Guidelines (exact match with GenLayer.com)
2626

2727
- **Font**: Switzer (loaded from GenLayer CDN), fallback Arial, sans-serif
28-
- **Theme**: Dark-first (#0e0e0e background), white text
29-
- **Colors**: Blue #4500f9, Red #ff307b, Green #4aca97, Purple #bca2ff, Border #2e2e2e
28+
- **Theme**: Light (#ffffff background), black text
29+
- **Colors**: Blue #4500f9, Red #ff307b, Green #4aca97, Purple #bca2ff, Border #d9d9d9
3030
- **Typography**: Clamp-based responsive sizing (Display 3-6rem, H1 2.25-4.5rem, H2 1.75-3.25rem, Body 0.9375-1.0625rem)
3131
- **Spacing**: 8-step clamp scale (0.5rem to 7.5rem), site margin clamp(1.25rem, 2.5rem)
3232
- **Radii**: 0.25rem (xs), 0.5rem (sm), 0.75rem (md)
33-
- **Buttons**: 1rem/1.5rem padding, 0.25rem radius, primary=white bg, secondary=transparent with border
33+
- **Buttons**: 1rem/1.5rem padding, 0.25rem radius, primary=black bg/white text, secondary=transparent with border
3434
- **Patterns**: Subtle radial glows, border-based depth (no shadows), hover transitions 0.3s ease
3535

3636
## Structure

app/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ a { color: inherit; text-decoration: none; }
109109
.hero::before {
110110
content: ''; position: absolute; top: 10%; left: 50%;
111111
transform: translateX(-50%); width: 600px; height: 600px;
112-
background: radial-gradient(circle, rgba(255, 48, 123, 0.06) 0%, transparent 70%);
112+
background: radial-gradient(circle, rgba(255, 48, 123, 0.04) 0%, transparent 70%);
113113
pointer-events: none;
114114
}
115115
.hero-badge {
@@ -140,7 +140,7 @@ a { color: inherit; text-decoration: none; }
140140
transition: all 0.3s ease; border: var(--border-width) solid transparent;
141141
}
142142
.btn-primary { background-color: var(--text); color: var(--bg); border-color: var(--border); }
143-
.btn-primary:hover { background-color: #222; }
143+
.btn-primary:hover { background-color: #333; }
144144
.btn-secondary { background-color: transparent; color: var(--text); border-color: var(--border); }
145145
.btn-secondary:hover { border-color: var(--text); background-color: var(--text); color: var(--bg); }
146146
.hero-techs { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }

0 commit comments

Comments
 (0)