-
Notifications
You must be signed in to change notification settings - Fork 64
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 Windows Terminal Template and Profiles #88
Open
nalpine
wants to merge
3
commits into
jan-warchol:master
Choose a base branch
from
nalpine:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+132
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Selenized palette for Windows Terminal | ||
====================================== | ||
|
||
Installation | ||
------------ | ||
|
||
* Navigate to and open the json file containing the desired Selenized preset. | ||
* Copy the file's text contents to clipboard. | ||
* Open Windows Terminal and navigate to Settings, The Windows Terminal `setings.json` will open in the default editor. | ||
* Paste the color scheme into schemes array, use a comma to seperate any other custom schemes if there are any. | ||
* Change the key for the colorScheme setting on any profile you wish to use a Selenized Preset on IE:`"colorScheme": "Selenized dark"` | ||
|
||
More Info | ||
--------- | ||
|
||
For more guidance visit the Microsoft article on | ||
[Color schemes](https://docs.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes) in Windows Terminal. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "Selenized black", | ||
"foreground": "#b9b9b9", | ||
"background": "#181818", | ||
"cursorColor": "#dedede", | ||
"selectionBackground": "#3b3b3b", | ||
"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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "Selenized dark", | ||
"foreground": "#adbcbc", | ||
"background": "#103c48", | ||
"cursorColor": "#cad8d9", | ||
"selectionBackground": "#325b66", | ||
"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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "Selenized light", | ||
"foreground": "#53676d", | ||
"background": "#fbf3db", | ||
"cursorColor": "#3a4d53", | ||
"selectionBackground": "#cfcebe", | ||
"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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "Selenized white", | ||
"foreground": "#474747", | ||
"background": "#ffffff", | ||
"cursorColor": "#282828", | ||
"selectionBackground": "#cdcdcd", | ||
"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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "!!COL!{name}!", | ||
"foreground": "!!COL!{fg_0.srgb}!", | ||
"background": "!!COL!{bg_0.srgb}!", | ||
"cursorColor": "!!COL!{fg_1.srgb}!", | ||
"selectionBackground": "!!COL!{bg_2.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}!" | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.