Skip to content

Commit f0e1629

Browse files
authored
Add Dracula theme for the new Windows Terminal
1 parent cd6d226 commit f0e1629

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
* Dracula Theme for the new Windows Terminal from Microsoft.
3+
* To install:
4+
* 1. Open up the terminal settings (it will open your profiles.json file).
5+
* 2. Add the below colorscheme object into the "schemes" array.
6+
* 3. Under the "profiles" key, set your active "colorScheme" to "Dracula". You may need to change it for multiple profiles (powershell, cmd, etc).
7+
*/
8+
{
9+
"name" : "Dracula",
10+
"background" : "#272935",
11+
"black" : "#272935",
12+
"blue" : "#BD93F9",
13+
"brightBlack" : "#555555",
14+
"brightBlue" : "#BD93F9",
15+
"brightCyan" : "#8BE9FD",
16+
"brightGreen" : "#50FA7B",
17+
"brightPurple" : "#FF79C6",
18+
"brightRed" : "#FF5555",
19+
"brightWhite" : "#FFFFFF",
20+
"brightYellow" : "#F1FA8C",
21+
"cyan" : "#6272A4",
22+
"foreground" : "#F8F8F2",
23+
"green" : "#50FA7B",
24+
"purple" : "#6272A4",
25+
"red" : "#FF5555",
26+
"white" : "#F8F8F2",
27+
"yellow" : "#FFB86C"
28+
}

0 commit comments

Comments
 (0)