diff --git a/README.md b/README.md index 814fcd6..ae64b73 100644 --- a/README.md +++ b/README.md @@ -322,6 +322,9 @@ You can also find about [Blink's official repository](https://github.com/blinksh ![Screenshot](screenshots/medallion.png) +### Miasma +![Screenshot](screenshots/miasma.png) + ### Misterioso ![Screenshot](screenshots/misterioso.png) @@ -779,3 +782,5 @@ The Ubuntu theme was inspired by default Ubuntu's console colors. Created by [Ma The Nord theme was created by [Arctic Ice Studio](https://github.com/arcticicestudio/nord). The Tokyonight theme was created by [folke](https://github.com/folke/tokyonight.nvim) + +The Miasma theme was created by [xero](https://github.com/xero/miasma.nvim) diff --git a/screenshots/miasma.png b/screenshots/miasma.png new file mode 100644 index 0000000..a89117c Binary files /dev/null and b/screenshots/miasma.png differ diff --git a/themes/miasma.js b/themes/miasma.js new file mode 100644 index 0000000..3923e01 --- /dev/null +++ b/themes/miasma.js @@ -0,0 +1,24 @@ +// ┏┏┓o┳━┓┓━┓┏┏┓┳━┓ +// ┃┃┃┃┃━┫┗━┓┃┃┃┃━┫ +// ┛ ┇┇┛ ┇━━┛┛ ┇┛ ┇ +// miasma by xero (https://x-e.ro) + +black = '#222222' +altBlack = '#666666' +red = '#685742' +green = '#5f875f' +yellow = '#B36D43' +blue = '#78824B' +magenta = '#bb7744' +cyan = '#C9A554' +white = '#D7C483' + +t.prefs_.set('color-palette-overrides', [ + black, red, green, yellow, + blue, magenta, cyan, white, + altBlack, red, green, yellow, + blue, magenta, cyan, white +]); +t.prefs_.set('cursor-color', 'rgba(105, 168, 80, 0.5)'); +t.prefs_.set('background-color', '#222222'); +t.prefs_.set('foreground-color', '#c2c2b0');