Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add config files for Windows Terminal. #119

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Ready-to-use config files are available for the following:
- [Tilda](terminals/tilda)
- [Tilix](terminals/tilix)
- [urxvt](terminals/urxvt)
- [Windows Terminal](terminals/windows-terminal)
- [xterm](terminals/xterm)

### Editors & IDEs (help wanted!)
Expand Down
8 changes: 8 additions & 0 deletions terminals/windows-terminal/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Selenized color palette for Windows Terminal
============================================

Installation
------------

Open your `settings.json` file in a text editor. Copy the JSON from one or more
theme files into the `schemes` array.
23 changes: 23 additions & 0 deletions terminals/windows-terminal/selenized-black.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "Selenized black",
"background": "#181818",
"selectionBackground": "#3b3b3b",
"cursorColor": "#dedede",
"foreground": "#b9b9b9",
"black": "#252525",
"red": "#ed4a46",
"green": "#70b433",
"yellow": "#dbb32d",
"blue": "#368aeb",
"purple": "#eb6eb7",
"cyan": "#3fc5b7",
"white": "#777777",
"brightBlack": "#3b3b3b",
"brightRed": "#ff5e56",
"brightGreen": "#83c746",
"brightYellow": "#efc541",
"brightBlue": "#4f9cfe",
"brightPurple": "#ff81ca",
"brightCyan": "#56d8c9",
"brightWhite": "#dedede"
}
23 changes: 23 additions & 0 deletions terminals/windows-terminal/selenized-dark.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "Selenized dark",
"background": "#103c48",
"selectionBackground": "#325b66",
"cursorColor": "#cad8d9",
"foreground": "#adbcbc",
"black": "#174956",
"red": "#fa5750",
"green": "#75b938",
"yellow": "#dbb32d",
"blue": "#4695f7",
"purple": "#f275be",
"cyan": "#41c7b9",
"white": "#72898f",
"brightBlack": "#325b66",
"brightRed": "#ff665c",
"brightGreen": "#84c747",
"brightYellow": "#ebc13d",
"brightBlue": "#58a3ff",
"brightPurple": "#ff84cd",
"brightCyan": "#53d6c7",
"brightWhite": "#cad8d9"
}
23 changes: 23 additions & 0 deletions terminals/windows-terminal/selenized-light.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "Selenized light",
"background": "#fbf3db",
"selectionBackground": "#cfcebe",
"cursorColor": "#3a4d53",
"foreground": "#53676d",
"black": "#e9e4d0",
"red": "#d2212d",
"green": "#489100",
"yellow": "#ad8900",
"blue": "#0072d4",
"purple": "#ca4898",
"cyan": "#009c8f",
"white": "#909995",
"brightBlack": "#cfcebe",
"brightRed": "#cc1729",
"brightGreen": "#428b00",
"brightYellow": "#a78300",
"brightBlue": "#006dce",
"brightPurple": "#c44392",
"brightCyan": "#00978a",
"brightWhite": "#3a4d53"
}
23 changes: 23 additions & 0 deletions terminals/windows-terminal/selenized-white.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "Selenized white",
"background": "#ffffff",
"selectionBackground": "#cdcdcd",
"cursorColor": "#282828",
"foreground": "#474747",
"black": "#ebebeb",
"red": "#d6000c",
"green": "#1d9700",
"yellow": "#c49700",
"blue": "#0064e4",
"purple": "#dd0f9d",
"cyan": "#00ad9c",
"white": "#878787",
"brightBlack": "#cdcdcd",
"brightRed": "#bf0000",
"brightGreen": "#008400",
"brightYellow": "#af8500",
"brightBlue": "#0054cf",
"brightPurple": "#c7008b",
"brightCyan": "#009a8a",
"brightWhite": "#282828"
}
23 changes: 23 additions & 0 deletions utils/templates/windows-terminal.json.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "!!COL!{name}!",
"background": "!!COL!{bg_0.srgb}!",
"selectionBackground": "!!COL!{bg_2.srgb}!",
"cursorColor": "!!COL!{fg_1.srgb}!",
"foreground": "!!COL!{fg_0.srgb}!",
"black": "!!COL!{bg_1.srgb}!",
"red": "!!COL!{red.srgb}!",
"green": "!!COL!{green.srgb}!",
"yellow": "!!COL!{yellow.srgb}!",
"blue": "!!COL!{blue.srgb}!",
"purple": "!!COL!{magenta.srgb}!",
"cyan": "!!COL!{cyan.srgb}!",
"white": "!!COL!{dim_0.srgb}!",
"brightBlack": "!!COL!{bg_2.srgb}!",
"brightRed": "!!COL!{br_red.srgb}!",
"brightGreen": "!!COL!{br_green.srgb}!",
"brightYellow": "!!COL!{br_yellow.srgb}!",
"brightBlue": "!!COL!{br_blue.srgb}!",
"brightPurple": "!!COL!{br_magenta.srgb}!",
"brightCyan": "!!COL!{br_cyan.srgb}!",
"brightWhite": "!!COL!{fg_1.srgb}!"
}