From 4cb763777a4f2eb6881c0321135ef7f8b0e3b9d1 Mon Sep 17 00:00:00 2001 From: xero Date: Tue, 3 Sep 2024 23:42:56 -0400 Subject: [PATCH] =?UTF-8?q?feat(extras):=20=E1=97=A9=E1=97=AA=E1=97=AA=20?= =?UTF-8?q?=E1=97=B7=E1=92=AAI=E1=91=8EK=20T=E1=95=BCE=E1=97=B0E=20?= =?UTF-8?q?=F0=9F=91=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + extras/evangelion.js | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 extras/evangelion.js diff --git a/README.md b/README.md index 38328e4..fdc7506 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,7 @@ this theme has been ported to a few different apps, and are included in the `ext * `evangelion.Xresources` - colors for [xclients](https://wiki.archlinux.org/title/x_resources) (e.g. unix terminal emulators) * `evangelion.zsh` - colors for [zsh](https://zsh.org) +* `evangelion.js` - colors for [blink shell](https://blink.sh) more on the way, and pr's for others are welcomed! diff --git a/extras/evangelion.js b/extras/evangelion.js new file mode 100644 index 0000000..e05492e --- /dev/null +++ b/extras/evangelion.js @@ -0,0 +1,41 @@ +/* _ ____ + : \ | \ . + https://x-e.ro | \ . | : |\ /\ + . | :|\__ | | | \ / \ +. |\ | |! \ \ | | | |\ / / +\"-.______ | \: ||\ \ \ | | | | \ / / + \_ "-_| |\ || \ \/ | |___| ! |\____/ _/-. /\ + "-_ ____: |_\ || \/ ___\ __ _// | | ___ \---" / + \ \ | _____, /___\___\/ / / \_! | // _/ / / + ___\_ \__| | | __. _/____ / / / > // / \/ + //_________| / |/ |/ \__// / / /_/ \/ + | / | : | / /__/ + |/ |/ E V A N G E L I O N */ + +black = '#14091e' +midnight = '#201430' +darkgrey = '#3B3847' +darkred = '#5b2b41' +red = '#DB6088' +darkgreen = '#9CDA7C' +green = '#87ff5f' +brown = '#D99145' +yellow = '#E6BB85' +darkblue = '#B968FC' +blue = '#CE67F0' +darkmagenta = '#875faf' +magenta = '#AB92FC' +darkcyan = '#9DAFD1' +cyan = '#A4D2EC' +lightgrey = '#CCD2D9' +white = '#E1D6F8' + +t.prefs_.set('color-palette-overrides', [ + black, darkred, darkgreen, brown, + darkblue, darkmagenta, darkcyan, lightgrey, + darkgrey, red, green, yellow, + blue, magenta, cyan, white +]); +t.prefs_.set('cursor-color', 'rgba(167, 98, 188, 0.5)'); +t.prefs_.set('background-color', midnight); +t.prefs_.set('foreground-color', lightgrey);