Feature/rainbow theme (#5)

* add rainbow theme

* update few colors in rainbow theme
This commit is contained in:
indrajit 2023-02-23 20:22:18 +06:00 committed by GitHub
parent 82c4a6af24
commit c1df59e2ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 51 additions and 0 deletions

View file

@ -84,6 +84,7 @@ configuration file.
| **_papertheme_**<br>[source](https://github.com/s6muel/paper-theme/blob/main/themes/alacritty/paper-theme.yml) | ![papercolor_light](images/papertheme.png) |
| **_pencil_dark_**<br>[source](https://github.com/mattly/iterm-colors-pencil) | ![pencil_dark](images/pencil_dark.png) |
| **_pencil_light_**<br>[source](https://github.com/mattly/iterm-colors-pencil) | ![pencil_light](images/pencil_light.png) |
| **_rainbow_** | ![rainbow](images/rainbow.png) |
| **_remedy_dark_**<br>[source](https://github.com/robertrossmann/vscode-remedy) | ![remedy_dark](images/remedy_dark.png) |
| **_rose-pine_**<br>[source](https://github.com/rose-pine/alacritty) | ![rose-pine](images/rose-pine.png) |
| **_snazzy_**<br>[source](https://github.com/sindresorhus/hyper-snazzy) | ![snazzy](images/snazzy.png) |

BIN
images/rainbow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 KiB

View file

@ -1227,6 +1227,29 @@ schemes:
cyan: '0x4fb8cc'
white: '0xf1f1f1'
rainbow: &rainbow
primary:
background: '0x192835'
foreground: '0xAADA4F'
normal:
black: '0x5B4375'
red: '0x426bb6'
green: '0x2286b5'
yellow: '0x5ab782'
blue: '0x93ca5b'
magenta: '0xc6c842'
cyan: '0x8a5135'
white: '0xc54646'
bright:
black: '0x5B4375'
red: '0x426bb6'
green: '0x2286b5'
yellow: '0x5ab782'
blue: '0x93ca5b'
magenta: '0xc6c842'
cyan: '0x8a5135'
white: '0xc54646'
remedy_dark: &remedy_dark
primary:
background: '0x2c2b2a'

27
themes/rainbow.yaml Normal file
View file

@ -0,0 +1,27 @@
colors:
# Default colors
primary:
background: '0x192835'
foreground: '0xAADA4F'
# Normal colors
normal:
black: '0x5B4375'
red: '0x426bb6'
green: '0x2286b5'
yellow: '0x5ab782'
blue: '0x93ca5b'
magenta: '0xc6c842'
cyan: '0x8a5135'
white: '0xc54646'
# Bright colors
bright:
black: '0x5B4375'
red: '0x426bb6'
green: '0x2286b5'
yellow: '0x5ab782'
blue: '0x93ca5b'
magenta: '0xc6c842'
cyan: '0x8a5135'
white: '0xc54646'