Telemetry ships with a carefully crafted dark-space aesthetic built on Tailwind CSS custom tokens. Every color, font, and visual effect is defined in a consistent design system — meaning you can systematically replace the palette to create a completely different look while keeping the same component structure.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/telemetry/llms.txt
Use this file to discover all available pages before exploring further.
Color System
Telemetry defines its palette as CSS custom properties on:root, directly compiled into assets/main.css. These tokens are then referenced throughout the Tailwind utility classes in every component. The full set of space-themed color tokens is:
| Token | Hex | Usage |
|---|---|---|
space-black | #04060f | Page background, scrollbar track |
midnight-navy | #0a0f24 | Navigation bg, card backgrounds, overlays |
aurora-teal | #14b8a6 | Primary accents, borders, timeline lines, scrollbar thumb |
aurora-cyan | #22d3ee | Highlights, cursor dot glow, text-glow shadow, active nav pill |
aurora-violet | #8b5cf6 | Secondary accents, Skills page cluster, status bar |
aurora-magenta | #f0abfc | Orbital ring border, Writing page hero |
sunset-orange | #fb923c | Alert/status indicators, priority badges |
theme.extend.colors section of your tailwind.config.js before building. Each token maps directly to the CSS variable set in :root:
npm run build to regenerate the compiled assets.
Typography
Telemetry imports three font families from Google Fonts, declared at the top ofmain.css:
| Utility | Family | Role |
|---|---|---|
font-mono | JetBrains Mono | Code-style labels, nav items, status badges, decorative mono text |
font-sans | Manrope | Body text, headings, the OBSERVATORY wordmark |
font-serif-italic | Cormorant Garamond (300 italic) | Stylized name display — the text-glow heading on each page |
font-serif-italic utility is a custom class defined in the CSS layer:
theme.extend.fontFamily in the Tailwind config and replace the @import URL with your chosen Google Fonts or self-hosted URL.
Space-Specific Visual Effects
Beyond the color tokens, Telemetry defines several custom CSS utilities that drive its visual signature:text-glow — Applies a two-layer text-shadow in aurora-cyan to make headings softly radiate:
text-glow-violet — The same pattern in aurora-violet, used on About and Skills page headings:
box-glow — Adds outer and inset glow on cards and panels using aurora-teal:
mix-blend-screen — Applied to the aurora blob <div> elements so their colors add additively against the dark background rather than overlaying it. Removing this causes the blobs to appear as solid colored patches instead of luminous glows.
blur-[100px] — Gaussian blur applied to the aurora blobs container. This is the single property that turns three colored rounded-full divs into soft atmospheric light.
animate-[aurora-flow_100s_linear_infinite] — A custom keyframe animation used on the SVG starfield layers in AuroraBackground.js:
Changing the Primary Glow Color
The glow effects referenceaurora-cyan directly in the CSS values. To switch your accent glow to a different color — for example, a blue or green theme — update both the Tailwind token and the hardcoded rgba values in the custom classes:
.box-glow and the shadow utilities on the cursor dot (shadow-[0_0_10px_#22d3ee,0_0_20px_#14b8a6]) to keep the accent color consistent across the whole site.
Dark Theme
Telemetry is dark-theme-only by design. Thespace-black background (#04060f) is applied globally to body in the compiled CSS, and every component assumes this dark baseline for its contrast ratios, glow effects, and mix-blend-screen blending.
Telemetry ships as a dark-only site. The aurora visual effects depend entirely on a near-black background — the
mix-blend-screen blend mode and text-glow shadows only produce the intended luminous effect against very dark colors. Enabling a light mode would require replacing all color tokens, removing blend modes, and reworking the glow utilities throughout every component file.