feat(extras): add windows terminal theme fragment

This commit is contained in:
Daniel Hill 2023-06-28 16:00:47 -04:00
parent a1e7b270c3
commit 52a6034ef0
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,33 @@
# Gruber Darker for Windows Terminal
## Installation
Where to place `gruber-darker.json` depends on _how_ you installed
Windows Terminal.
<details><summary>System</summary>
<p>
Place `gruber-darker.json` in
```
C:\ProgramData\Microsoft\Windows Terminal\Fragments\gruber-darker\gruber-darker.json
```
</p>
</details>
<details><summary>User</summary>
<p>
Place `gruber-darker.json` in
```
C:\Users\<user>\AppData\Local\Microsoft\Windows Terminal\Fragments\gruber-darker\gruber-darker.json
```
</p>
</details>
Windows Terminal will read this file and you should see "Gruber Darker"
in the Color schemes list the next time you start the application.

View File

@ -0,0 +1,29 @@
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"schemes": [
{
"name": "Gruber Darker",
"background": "#181818",
"foreground": "#E4E4E4",
"cursorColor": "#FFDD33",
"selectionBackground": "#FFFFFF",
"black": "#181818",
"brightBlack": "#52494E",
"white": "#E4E4E4",
"brightWhite": "#F5F5F5",
"blue": "#96A6C8",
"brightBlue": "#52494E",
"cyan": "#95A99F",
"brightCyan": "#95A99F",
"green": "#73D936",
"brightGreen": "#73D936",
"purple": "#9E95C7",
"brightPurple": "#9E95C7",
"red": "#F43841",
"brightRed": "#FF4F58",
"yellow": "#FFDD33",
"brightYellow": "#FFDD33"
}
]
}