Skip to content

Commit 7f43474

Browse files
authored
Merge pull request #21 from dracula/windows-terminal-support
Add Support for the new Windows Terminal
2 parents cd6d226 + 5ca057e commit 7f43474

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ In Windows 10, the titlebar color can be set system-wide in Settings → Persona
5353
</p>
5454
</details>
5555

56+
## Support for other terminals
57+
58+
This repo also contains a [theme for the new Windows Terminal from Microsoft](https://github.com/dracula/powershell/blob/master/theme/Windows%2010%20Terminal%20Dracula%20Theme.json), as well as a [theme for ConEmu](https://github.com/dracula/powershell/blob/master/theme/ConEmu-Dracula-Theme.xml). An alternate version of the ConEmu theme is available at [dracula/conemu](https://github.com/dracula/conemu).
59+
5660
## Frequently Asked Questions
5761

5862
<dl>
Lines changed: 28 additions & 0 deletions
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)