惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
The Cloudflare Blog
D
DataBreaches.Net
J
Java Code Geeks
G
Google Developers Blog
L
LangChain Blog
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
量子位
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
博客园_首页
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Terminal themes optimize for code. Claude Code is mostly ...
J Now · 2026-06-26 · via DEV Community

J Now

Most of my time in Claude Code isn't spent reading syntax-highlighted code. It's spent reading tool output, permission prompts, reasoning traces, multi-paragraph explanations. The ANSI slots that matter aren't keyword and string — they're whatever color Claude Code uses for the text you read in bulk, the text that asks you to approve a bash command, the text that explains what just happened.

Existing dark themes are tuned for code editors. They either ignore those slots or map them to colors calibrated for short bursts of syntax, not paragraphs you stare at for hours.

I built klein-blue around the opposite premise: treat Claude Code as a prose reading environment first, with Yves Klein's IKB blue as the anchor color.

The main technical constraint that shaped everything: pure IKB (hex 002FA7) fails APCA contrast as readable text on a dark ground — it lands at Lc -12, which is effectively invisible. So I split it across two ANSI slots. ansi:blue gets pure IKB for decorative use (borders, highlights, visual anchors). ansi:blueBright — which Claude Code uses for permission-prompt text you actually need to read — gets a lifted Klein-family blue, A8BEF0, that clears the body-text contrast gate.

The theme ships in four variations:

  • Klein Void Refined — balanced, the default starting point
  • Klein Void Sand & Sea — accepts Claude's claude-sand brand color as a second hero rather than neutralizing it
  • Klein Void Prot — every accent APCA-verified; body >= 90 Lc, subtle >= 75, muted >= 45, accent >= 60
  • Klein Void Gallery — maximum void, single blue, everything else near-neutral

V3 Prot is the only variation where every slot passes strict per-role gates. The others make deliberate tradeoffs — Gallery trades some legibility for visual austerity, Sand & Sea lets the brand red compete.

One prerequisite worth knowing upfront: Claude Code has to be set to dark-ansi via its /theme picker. If it's on any other setting, it uses a hardcoded RGB palette and ignores the Terminal.app ANSI theme entirely — your profile changes do nothing.

Installation is install.sh, which drops .terminal profile files built from an Objective-C builder and installs either CommitMono-Regular (V1, V3) or IBM Plex Mono (V2, V4) to ~/Library/Fonts/. Full rollback via restore.sh.

https://github.com/robertnowell/klein-void