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

推荐订阅源

有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
博客园 - 【当耐特】
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
B
Blog RSS Feed
腾讯CDC
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
DataBreaches.Net
The Cloudflare Blog
V
V2EX
S
SegmentFault 最新的问题

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
I built my own VS Code theme from scratch because nothing...
Vinay Kumar · 2026-05-17 · via DEV Community

It was 2am. I was deep in a coding session and my theme just looked… off.

I'd tried everything — One Dark Pro, Dracula, Tokyo Night, Catppuccin. All great themes. None of them felt mine.

So instead of sleeping like a normal person, I built my own. 😭

The Story Behind It 🌙

I remember the exact night I decided to build this. It was maybe 1am, I was working on a React project, and I kept getting distracted by how my code looked. One Dark Pro felt too flat. Dracula felt too harsh. Tokyo Night was close but the purple felt cold.

I started tweaking colors in a JSON file just to see what happened. One color led to another. Before I knew it, it was 4am and I had something that actually felt right.

That was the beginning of Aura Dark.

Meet Aura Dark 💜

A deep purple VS Code theme built specifically for long coding sessions. Warm background, rich colors, every token means something different. Not just "slap some purple on it" — every single language has dedicated rules written manually.

What Makes It Different 🎨

Most themes pick colors that look good in screenshots. I wanted colors that feel good after hour 3 of coding.

Every color has a specific job:

  • #C792EA Purple - keywords and decorators. Most important tokens get the most distinctive color
  • #82AAFF Blue — functions and methods. Your eye naturally follows blue
  • #C3E88D Green — strings. Calm and readable, never harsh
  • #FFCB8B Yellow/Orange — class names and components. Warm and inviting
  • #1E1F29 Background — warm dark, not cold black. Reduces eye strain significantly

Aura Dark color palette showing purple #C792EA, blue #82AAFF, green #C3E88D, yellow #FFCB8B and dark background #1E1F29

Features ✨

  • 35+ languages with dedicated rules — not just copy paste colors
  • Warm #1E1F29 background — easy on eyes at 2am
  • Every syntax element has its own distinct color
  • Works beautifully on CSS, JS, Python, Rust, PHP and more

Language Support 🌍

One thing I'm really proud of is the language coverage. Most themes handle JavaScript well and then just… guess for everything else. Aura Dark has dedicated token rules for every single one of these:

Frontend: TypeScript, JavaScript, React/JSX, HTML, CSS, SCSS, Vue, Svelte
Backend: Python, Java, Go, Rust, PHP, C#, Ruby, Swift, Kotlin, Dart
DevOps: Docker, Bash, YAML, JSON, Terraform, GitHub Actions
Other: SQL, Markdown, GraphQL, Regex, Git Diff and more
Every language was tested manually. Not just "it probably works."

Recommended Setup ⚙️

To get the full Aura Dark experience:
Font: JetBrains Mono or Fira Code with ligatures enabled
Add this to your settings.json:

{
  "editor.fontFamily": "JetBrains Mono",
  "editor.fontSize": 14,
  "editor.lineHeight": 1.6,
  "editor.fontLigatures": true
}

Enter fullscreen mode Exit fullscreen mode

What's Next 🚀

Planning to add:

  • Aura Dark for JetBrains IDEs
  • Aura Dark for terminal (iTerm2, Windows Terminal)
  • Maybe a light variant someday (scary thought lol 😂)

Open to suggestions — drop them in the comments or open a GitHub issue!

Try It Yourself

🔗 VS Code Marketplace: https://marketplace.visualstudio.com/items?itemName=vinaycodes-io.aura-dark-theme
🔗 GitHub: https://github.com/vinaycodes-io/aura-dark-theme
🔗 Preview: https://vscodethemes.com/e/vinaycodes-io.aura-dark-theme/aura-dark

Would love honest brutal feedback — what looks off, what could be better, what language support is missing. Drop it in the comments! 😄