diff options
| -rw-r--r-- | PKGBUILD | 2 | ||||
| -rw-r--r-- | config.h | 23 |
2 files changed, 12 insertions, 13 deletions
@@ -6,7 +6,7 @@ pkgver=0.8.2.r1062.2087ab9 pkgrel=1 epoch=1 pkgdesc="Luke's simple (suckless) terminal with vim-bindings, transparency, xresources, etc. " -url='https://github.com/LukeSmithxyz/st' +url='https://git.afu.re/st' arch=('i686' 'x86_64') license=('MIT') options=('zipman') @@ -107,37 +107,36 @@ char *termname = "st-256color"; unsigned int tabspaces = 8; /* bg opacity */ -float alpha = 0.8; +float alpha = 0.9; float alphaOffset = 0.0; float alphaUnfocus; /* Terminal colors (16 first used in escape sequence) */ -static const char *colorname[] = { - "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */ +sstatic const char *colorname[] = { + "#131313", "#cc241d", - "#98971a", + "#009107", "#d79921", - "#458588", + "#0184bc", "#b16286", - "#689d6a", + "#ffff87", "#a89984", "#928374", "#fb4934", - "#b8bb26", - "#fabd2f", - "#83a598", + "#069107", + "#E1AA2A", + "#01B9C5", "#d3869b", - "#8ec07c", + "#E0115F", "#ebdbb2", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ "#add8e6", /* 256 -> cursor */ "#555555", /* 257 -> rev cursor*/ - "#282828", /* 258 -> bg */ + "#131313", /* 258 -> bg */ "#ebdbb2", /* 259 -> fg */ }; - /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor |
