Compatible with
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, });
or
Press Ctrl+Shift+X and search for: Ultra Instinct Theme
