Ultra Instinct

Ultra Instinct Theme

A coding environment forged for deep work. Designed to eliminate noise so the interface disappears and your instincts take over.

Built by Juan Lias
Every Fork
Compatible with
Ultra Instinctextension.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Ultra Instinct — 443 color keys · WCAG 2.1 AA
import { defineTheme, type TokenColor } from 'vscode';

const palette: Record<string, string> = {
  bg:      '#141118',
  fg:      '#b0b5c0',
  accent:  '#7B42FF',
  keyword: '#BB88FF',
  string:  '#F0F5FF',
  number:  '#7B42FF',
  comment: '#7878A0',
};

const tokens: TokenColor[] = [
  { scope: 'keyword', foreground: palette.keyword, fontStyle: 'bold' },
  { scope: 'function', foreground: palette.fg,      fontStyle: 'bold' },
  { scope: 'string', foreground: palette.string                          },
  { scope: 'number', foreground: palette.number,  fontStyle: 'bold' },
  { scope: 'comment', foreground: palette.comment, fontStyle: 'italic' },
];

export default defineTheme({
  name: 'Ultra Instinct Mastered',
  variant: 'mastered',
  tokens,
});
Ultra Instinct
main
0 ⓧ 0 ⚠
Spaces: 2UTF-8TYPESCRIPT
or

Press Ctrl+Shift+X and search for: Ultra Instinct Theme

© 2026 Ultra Instinct Theme·Designed & Engineered by Juan Lias·Legacy