forked from KadoBOT/80s-retrowave
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
2 deletions.
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 |
---|---|---|
@@ -1,2 +1,42 @@ | ||
# 80s-retrowave | ||
80s retrowave theme for windows terminal | ||
# 80s retrowave color scheme for Windows terminal | ||
## Profile Configuration | ||
Add the extra options below to your `profile.defaults` or to a specificy terminal profile. You can download the gif [here](./BraveOptimalBaleenwhale-size_restricted.gif)) and you can change the `fontFace` to whatever you like. | ||
```json | ||
{ | ||
"useAcrylic": true, | ||
"acrylicOpacity": 0.8, | ||
"backgroundImage": "[USER_PATH]/BraveOptimalBaleenwhale-size_restricted.gif", | ||
"backgroundImageOpacity": 0.15, | ||
"fontFace": "Cascadia Code PL", | ||
"colorScheme": "80s Retrowave", | ||
"antialiasingMode": "cleartype", | ||
"tabColor": "#220036" | ||
} | ||
``` | ||
## Color Scheme | ||
Under the `schemes` array, add the following scheme object: | ||
```json | ||
{ | ||
"name": "80s Retrowave", | ||
"cursorColor": "#f949ff", | ||
"selectionBackground": "#c20092", | ||
"background": "#220036", | ||
"foreground": "#ffa600", | ||
"black": "#580051", | ||
"blue": "#743eca", | ||
"cyan": "#2AA198", | ||
"green": "#ff00f2", | ||
"purple": "#D33682", | ||
"red": "#DC322F", | ||
"white": "#6a008a", | ||
"yellow": "#ff5e00", | ||
"brightBlack": "#59c2ff", | ||
"brightBlue": "#00d9ff", | ||
"brightCyan": "#e7ffff", | ||
"brightGreen": "#f949ff", | ||
"brightPurple": "#ff00bf", | ||
"brightRed": "#ff4d00", | ||
"brightWhite": "#FDF6E3", | ||
"brightYellow": "#c20092" | ||
} | ||
``` |