Skip to content

Commit 1fdba87

Browse files
Update terminal previews with dgtldept color palette
Replace glassmorphism terminal styling with flat design: pure black background, solid white 1px border, no tilt/rotation, no glow. Terminal colors now use the dgtldept palette (custom ANSI swatches) instead of Tailwind defaults. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6018367 commit 1fdba87

File tree

1 file changed

+28
-19
lines changed

1 file changed

+28
-19
lines changed

docs/index.html

Lines changed: 28 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,23 @@
139139
--accent: #5B5F8D;
140140
--black: #000000;
141141
--white: #ffffff;
142-
--terminal-bg: #0d0f14;
143-
--terminal-green: #4ade80;
144-
--terminal-red: #ef4444;
145-
--terminal-amber: #f59e0b;
146-
--terminal-text: #e4e4e7;
142+
--terminal-bg: #000000;
143+
--terminal-green: #57dd3f;
144+
--terminal-red: #d9605b;
145+
--terminal-amber: #f7f65f;
146+
--terminal-text: #ffffff;
147+
--terminal-cyan: #46a9ad;
148+
--terminal-magenta: #ff00fa;
149+
--terminal-blue: #4e5fbc;
150+
--terminal-purple: #ed55e9;
151+
--terminal-bright-black: #4a5060;
152+
--terminal-bright-green: #95ee85;
153+
--terminal-bright-red: #de7873;
154+
--terminal-bright-yellow: #fcfb8e;
155+
--terminal-bright-cyan: #6aede9;
156+
--terminal-bright-blue: #2d43b9;
157+
--terminal-bold: #53b7c1;
158+
--terminal-link: #606cb8;
147159
--border-width: 2px;
148160
--section-pad-y: clamp(80px, 12vw, 200px);
149161
--section-pad-x: clamp(40px, 5vw, 80px);
@@ -390,12 +402,7 @@
390402
}
391403

392404
.hero-terminal .terminal {
393-
transform:
394-
rotateX(0deg)
395-
rotateY(-19.5deg)
396-
rotateZ(0deg)
397-
scale(1.25);
398-
transform-style: preserve-3d;
405+
transform: none;
399406
}
400407

401408
.hero .display {
@@ -410,25 +417,25 @@
410417
/* ─── TERMINAL ─── */
411418
.terminal {
412419
background: var(--terminal-bg);
413-
border: 1px solid rgba(255,255,255,0.1);
414-
border-radius: 12px;
420+
border: 1px solid #ffffff;
421+
border-radius: 16px;
415422
overflow: hidden;
416423
font-family: 'Cartograph CF', 'SF Mono', monospace;
417424
font-size: clamp(0.7rem, 1vw, 1rem);
418425
line-height: 1.65;
419426
width: clamp(280px, 50vw, 900px);
420427
aspect-ratio: 1031 / 706;
421428
margin: 0 auto;
422-
box-shadow: 0 0 40px rgba(91, 95, 141, 0.08);
429+
box-shadow: none;
423430
}
424431

425432
.terminal-header {
426433
display: flex;
427434
align-items: center;
428435
gap: 8px;
429436
padding: 14px 18px;
430-
background: rgba(255,255,255,0.04);
431-
border-bottom: 1px solid rgba(255,255,255,0.06);
437+
background: transparent;
438+
border-bottom: none;
432439
}
433440

434441
.terminal-dot {
@@ -464,14 +471,14 @@
464471
}
465472

466473
.terminal-body .prompt {
467-
color: var(--accent);
474+
color: var(--terminal-cyan);
468475
}
469476

470477
.terminal-body .cursor {
471478
display: inline-block;
472479
width: 8px;
473480
height: 1.1em;
474-
background: var(--accent);
481+
background: var(--terminal-magenta);
475482
vertical-align: text-bottom;
476483
animation: blink 1s step-end infinite;
477484
}
@@ -491,8 +498,10 @@
491498
.terminal-body .green { color: var(--terminal-green); }
492499
.terminal-body .red { color: var(--terminal-red); }
493500
.terminal-body .amber { color: var(--terminal-amber); }
494-
.terminal-body .accent { color: var(--accent); }
501+
.terminal-body .accent { color: var(--terminal-cyan); }
495502
.terminal-body .bold { font-weight: 700; }
503+
.terminal-body .cyan { color: var(--terminal-cyan); }
504+
.terminal-body .magenta { color: var(--terminal-magenta); }
496505
.terminal-body .dim { opacity: 0.5; }
497506

498507
/* ─── STATIC TERMINAL ─── */

0 commit comments

Comments
 (0)