-
Notifications
You must be signed in to change notification settings - Fork 3
/
colors_qi.json
30 lines (30 loc) · 1.13 KB
/
colors_qi.json
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
27
28
29
30
{
"$schema": "vscode://schemas/color-theme",
"type": "light",
"colors": {
"editor.background": "#171717", // bg
"terminal.ansiRed": "#e32791", // r
"terminal.ansiGreen": "#30c798", // g
"terminal.ansiYellow": "#e3c472", // y
"terminal.ansiBlue": "#6796e6", // b
"terminal.ansiMagenta": "#e59fdf", // m
"terminal.ansiCyan": "#81d8d0",
"terminal.ansiWhite": "#999999", // w
"terminal.ansiBrightBlack": "#515151", // kk
"terminal.ansiBrightRed": "#e466ad",
"terminal.ansiBrightGreen": "#6cd1b2", // gg
"terminal.ansiBrightYellow": "#e4cf98",
"terminal.ansiBrightBlue": "#91b0e6", // bb
"terminal.ansiBrightMagenta": "#e5b6e1",
"terminal.ansiBrightCyan": "#a2dcd7", // cc
"editor.foreground": "#e5e6e6", // fg
"editorCursor.foreground": "#20bbfc", // cursor
"editor.selectionBackground": "#0f3a4b", // selbg
"editorError.foreground": "#ed2939", // error
"editorWarning.foreground": "#e9a700", // warning
"editorInfo.foreground": "#20bbfc", // info
"statusBar.background": "#0f3a4b", // uiBlue
"statusBar.noFolderBackground": "#553a63", // uiPurple
"statusBar.debuggingBackground": "#522900" // uiOrange
}
}