Skip to content

Commit

Permalink
Merge pull request blinksh#36 from xero/master
Browse files Browse the repository at this point in the history
add miasma theme
  • Loading branch information
yury committed Aug 29, 2023
2 parents e454151 + 7cfb05c commit 5744a2f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Binary file added screenshots/miasma.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions themes/miasma.js
Original file line number Diff line number Diff line change
@@ -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');

0 comments on commit 5744a2f

Please sign in to comment.