Skip to content

Commit 49110ea

Browse files
b0aseclaude
andcommitted
Update BitcoinSpreadsheetPage to use red accent color theme
- Changed primary color from blue (#007acc) to bright red (#ff3333) - Updated gradients, backgrounds, and accent colors throughout - Matches bitcoin-email dark theme styling approach - Enhanced visual hierarchy with consistent red branding - Improved typography with modern sans-serif font stack 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 1f2ee33 commit 49110ea

File tree

2 files changed

+60
-58
lines changed

2 files changed

+60
-58
lines changed

frontend/src/pages/BitcoinSpreadsheetPage.css

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
.bitcoin-spreadsheet-page {
22
background: #000000;
3-
color: white;
3+
color: #ffffff;
44
min-height: 100vh;
55
overflow-x: hidden;
6+
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
67
}
78

89
/* Hero Section */
@@ -11,7 +12,7 @@
1112
display: flex;
1213
align-items: center;
1314
justify-content: center;
14-
background: radial-gradient(ellipse at center, rgba(0, 122, 204, 0.1) 0%, transparent 70%);
15+
background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
1516
position: relative;
1617
padding: 60px 20px;
1718
}
@@ -28,18 +29,18 @@
2829

2930
.bitcoin-logo-large {
3031
font-size: 80px;
31-
color: #007acc;
32+
color: #ff3333;
3233
font-weight: bold;
3334
display: inline-block;
3435
animation: pulse-glow 3s ease-in-out infinite;
3536
}
3637

3738
@keyframes pulse-glow {
3839
0%, 100% {
39-
text-shadow: 0 0 20px rgba(0, 122, 204, 0.5);
40+
text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
4041
}
4142
50% {
42-
text-shadow: 0 0 40px rgba(0, 122, 204, 0.8);
43+
text-shadow: 0 0 40px rgba(255, 51, 51, 0.8);
4344
}
4445
}
4546

@@ -51,7 +52,7 @@
5152
}
5253

5354
.bitcoin-text {
54-
color: #007acc;
55+
color: #ff3333;
5556
}
5657

5758
.hero-subtitle {
@@ -89,14 +90,14 @@
8990
}
9091

9192
.cta-button.primary {
92-
background: linear-gradient(135deg, #007acc, #0051a2);
93+
background: linear-gradient(135deg, #ff3333, #cc0000);
9394
color: white;
9495
}
9596

9697
.cta-button.primary:hover {
97-
background: linear-gradient(135deg, #0088dd, #0066bb);
98+
background: linear-gradient(135deg, #ff4444, #dd1111);
9899
transform: translateY(-2px);
99-
box-shadow: 0 10px 30px rgba(0, 122, 204, 0.4);
100+
box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
100101
}
101102

102103
.cta-button.secondary {
@@ -120,7 +121,7 @@
120121
/* Features Section */
121122
.features-section {
122123
padding: 100px 20px;
123-
background: linear-gradient(180deg, transparent, rgba(0, 122, 204, 0.02));
124+
background: linear-gradient(180deg, transparent, rgba(255, 51, 51, 0.02));
124125
}
125126

126127
.section-title {
@@ -148,7 +149,7 @@
148149

149150
.feature-card:hover {
150151
background: rgba(255, 255, 255, 0.05);
151-
border-color: rgba(0, 122, 204, 0.3);
152+
border-color: rgba(255, 51, 51, 0.3);
152153
transform: translateY(-5px);
153154
}
154155

@@ -173,7 +174,7 @@
173174
/* Tokenization Section */
174175
.tokenization-section {
175176
padding: 100px 20px;
176-
background: rgba(0, 122, 204, 0.03);
177+
background: rgba(255, 51, 51, 0.03);
177178
}
178179

179180
.tokenization-content {
@@ -205,16 +206,16 @@
205206

206207
.protocol-name {
207208
font-weight: 500;
208-
color: #007acc;
209+
color: #ff3333;
209210
}
210211

211212
.protocol-desc {
212213
color: rgba(255, 255, 255, 0.6);
213214
}
214215

215216
.token-card {
216-
background: linear-gradient(135deg, rgba(0, 122, 204, 0.1), rgba(0, 122, 204, 0.05));
217-
border: 2px solid rgba(0, 122, 204, 0.3);
217+
background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 51, 51, 0.05));
218+
border: 2px solid rgba(255, 51, 51, 0.3);
218219
border-radius: 16px;
219220
padding: 30px;
220221
max-width: 400px;
@@ -232,7 +233,7 @@
232233
font-size: 12px;
233234
font-weight: 600;
234235
letter-spacing: 2px;
235-
color: #007acc;
236+
color: #ff3333;
236237
}
237238

238239
.token-badge {
@@ -291,16 +292,16 @@
291292
}
292293

293294
.pricing-card.featured {
294-
border-color: rgba(0, 122, 204, 0.5);
295-
background: rgba(0, 122, 204, 0.05);
295+
border-color: rgba(255, 51, 51, 0.5);
296+
background: rgba(255, 51, 51, 0.05);
296297
}
297298

298299
.featured-badge {
299300
position: absolute;
300301
top: -12px;
301302
left: 50%;
302303
transform: translateX(-50%);
303-
background: linear-gradient(135deg, #007acc, #0051a2);
304+
background: linear-gradient(135deg, #ff3333, #cc0000);
304305
color: white;
305306
padding: 4px 20px;
306307
border-radius: 20px;
@@ -322,7 +323,7 @@
322323
.pricing-value {
323324
font-size: 36px;
324325
font-weight: 600;
325-
color: #007acc;
326+
color: #ff3333;
326327
}
327328

328329
.pricing-unit {
@@ -341,7 +342,7 @@
341342
.cta-section {
342343
padding: 100px 20px;
343344
text-align: center;
344-
background: radial-gradient(ellipse at center, rgba(0, 122, 204, 0.1) 0%, transparent 70%);
345+
background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
345346
}
346347

347348
.cta-title {
@@ -384,7 +385,7 @@
384385

385386
.footer-logo {
386387
font-size: 24px;
387-
color: #007acc;
388+
color: #ff3333;
388389
font-weight: bold;
389390
}
390391

@@ -406,7 +407,7 @@
406407
}
407408

408409
.footer-links a:hover {
409-
color: #007acc;
410+
color: #ff3333;
410411
}
411412

412413
.footer-copyright {
@@ -465,7 +466,7 @@
465466
}
466467

467468
.infrastructure-item h3 {
468-
color: #007acc;
469+
color: #ff3333;
469470
font-size: 24px;
470471
margin-bottom: 15px;
471472
}
@@ -496,7 +497,7 @@
496497
.table-header {
497498
display: grid;
498499
grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
499-
background: #007acc;
500+
background: #ff3333;
500501
color: white;
501502
font-weight: 600;
502503
font-size: 14px;
@@ -520,12 +521,12 @@
520521
}
521522

522523
.table-row:hover {
523-
background: rgba(0, 122, 204, 0.1);
524+
background: rgba(255, 51, 51, 0.1);
524525
}
525526

526527
.table-row.featured {
527-
background: rgba(0, 122, 204, 0.05);
528-
border: 1px solid rgba(0, 122, 204, 0.3);
528+
background: rgba(255, 51, 51, 0.05);
529+
border: 1px solid rgba(255, 51, 51, 0.3);
529530
}
530531

531532
.dataset-name {
@@ -589,7 +590,7 @@
589590
}
590591

591592
.testimonial-author strong {
592-
color: #007acc;
593+
color: #ff3333;
593594
display: block;
594595
margin-bottom: 5px;
595596
}

0 commit comments

Comments
 (0)