There is no way to add a theme to windows terminal simply by copying a file. You need to edit your profiles.json file. Having said that, this is the code necessary for a Wild-Cherry theme, adapted from the ansi colors for the iterm theme:
You'll need to add this to the schemas array, then you'll have to modify (or duplicate and rename) any profiles you want to have the theme applied to. After you've done that, set the profile's "colorScheme" : "Wild-Cherry", and "cursorColor" : "#0091D5",. If you've duplicated a profile, you'll also need to change the profile name (to differentiate it; I called mine Ubuntu-WildCherry) and the guid property (I just increased it by one).
There is no way to add a theme to windows terminal simply by copying a file. You need to edit your profiles.json file. Having said that, this is the code necessary for a Wild-Cherry theme, adapted from the ansi colors for the iterm theme:
JSON for profiles.json schema array
```json { "name" : "Wild-Cherry", "background" : "#1F1726", "black" : "#099CD7", "blue" : "#883CDC", "brightBlack" : "#099CD7", "brightBlue" : "#883CDB", "brightCyan" : "#4F5D95", "brightGreen" : "#2AB250", "brightPurple" : "#099BD7", "brightRed" : "#000000", "brightWhite" : "#FFF8DE", "brightYellow" : "#FFD16F", "cyan" : "#4F5D95", "foreground" : "#F2F2F2", "green" : "#2AB250", "purple" : "#099BD7", "red" : "#D94084", "white" : "#FFF8DE", "yellow" : "#FFD16F" }, ```You'll need to add this to the
schemas
array, then you'll have to modify (or duplicate and rename) any profiles you want to have the theme applied to. After you've done that, set the profile's"colorScheme" : "Wild-Cherry",
and"cursorColor" : "#0091D5",
. If you've duplicated a profile, you'll also need to change the profile name (to differentiate it; I called mine Ubuntu-WildCherry) and the guid property (I just increased it by one).Here's an example
```json { "acrylicOpacity" : 1, "closeOnExit" : true, "colorScheme" : "Wild-Cherry", "commandline" : "wsl.exe -d Ubuntu", "cursorColor" : "#0091D5", "cursorShape" : "bar", "fontFace" : "Inconsolata", "fontSize" : 14, "guid" : "{d34db3a7-deb8-c45e-b940-b01dc4b005e5}", "historySize" : 9001, "icon" : "ms-appx:///ProfileIcons/{7a57e1e55-b45e-53f4-fa11-d3fec47edfac3}.png", "name" : "Ubuntu-WildCherry", "padding" : "0, 0, 0, 0", "snapOnInput" : true, "startingDirectory" : "%USERPROFILE%", "useAcrylic" : true }, ```