Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
02bd8ab5
Commit
02bd8ab5
authored
Apr 26, 2010
by
canthiswait
Committed by
Robby Russell
May 06, 2010
Browse files
Added scpectrum script for easy 256 color theaming
parent
3c87d483
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/spectrum.zsh
0 → 100644
View file @
02bd8ab5
#! /bin/zsh
# A script to make using 256 colors in zsh less painful.
# P.C. Shyamshankar <sykora@lucentbeing.com>
# Copied from http://github.com/sykora/etc/blob/master/zsh/functions/spectrum/
typeset
-Ag
FX FG BG
FX
=(
reset
"[00m"
bold
"[01m"
no-bold
"[22m"
italic
"[03m"
no-italic
"[23m"
underline
"[04m"
no-underline
"[24m"
blink
"[05m"
no-blink
"[25m"
reverse
"[07m"
no-reverse
"[27m"
)
for
color
in
{
000..255
}
;
do
FG[
$color
]=
"[38;5;
${
color
}
m"
BG[
$color
]=
"[48;5;
${
color
}
m"
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment