Skip to content

Commit 583fffd

Browse files
gHashTagona-agent
andcommitted
fix: replace blue/purple colors with green accent
- BenchmarksSection: gradient #8b5cf6 → #00b377 - InvestSection: gradient #8b5cf6 → #00b377 - TheoremsSection: rgba(99,102,241) → rgba(0,229,153) - PhoenixNumberSection: indigo/violet → green variants Co-authored-by: Ona <no-reply@ona.com>
1 parent 6b97972 commit 583fffd

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

website/src/components/sections/BenchmarksSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function AnimatedValue({ value, delay }: { value: string; delay: number }) {
5959
fontWeight: 600,
6060
color: 'var(--accent)',
6161
marginBottom: '0.5rem',
62-
background: 'linear-gradient(135deg, var(--accent), #8b5cf6)',
62+
background: 'linear-gradient(135deg, var(--accent), #00b377)',
6363
WebkitBackgroundClip: 'text',
6464
WebkitTextFillColor: 'transparent',
6565
backgroundClip: 'text'

website/src/components/sections/InvestSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function InvestSection() {
3838
fontSize: 'clamp(2rem, 5vw, 3rem)',
3939
fontWeight: 600,
4040
marginBottom: '0.5rem',
41-
background: 'linear-gradient(135deg, var(--accent), #8b5cf6)',
41+
background: 'linear-gradient(135deg, var(--accent), #00b377)',
4242
WebkitBackgroundClip: 'text',
4343
WebkitTextFillColor: 'transparent',
4444
backgroundClip: 'text'

website/src/components/sections/PhoenixNumberSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function PhoenixNumberSection() {
2020
<div className="fade" style={{
2121
marginTop: '2rem',
2222
padding: '2rem',
23-
background: 'linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1))',
23+
background: 'linear-gradient(135deg, rgba(0, 229, 153, 0.1), rgba(0, 180, 120, 0.1))',
2424
borderRadius: '16px',
2525
border: '1px solid var(--border)',
2626
textAlign: 'center'
@@ -193,7 +193,7 @@ export default function PhoenixNumberSection() {
193193
))}
194194
<div style={{
195195
padding: '1rem',
196-
background: 'rgba(99, 102, 241, 0.1)',
196+
background: 'rgba(0, 229, 153, 0.1)',
197197
textAlign: 'center',
198198
fontWeight: 600,
199199
color: 'var(--accent)'

website/src/components/sections/TheoremsSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export default function TheoremsSection() {
122122

123123
{/* Formula */}
124124
<div style={{
125-
background: 'rgba(99, 102, 241, 0.08)',
125+
background: 'rgba(0, 229, 153, 0.08)',
126126
padding: '0.8rem 1rem',
127127
borderRadius: '6px',
128128
fontFamily: 'ui-monospace, monospace',

0 commit comments

Comments
 (0)