Ansi: add some other colors

This commit is contained in:
Josh Holtrop 2018-11-06 22:19:49 -05:00
parent 7eeb6312ba
commit bdeaec11ba

View File

@ -24,8 +24,18 @@ module Rscons
case m case m
when :red when :red
out += "\e[0;31m" out += "\e[0;31m"
when :green
out += "\e[0;32m"
when :yellow
out += "\e[0;33m"
when :blue
out += "\e[0;34m"
when :magenta
out += "\e[0;35m"
when :cyan when :cyan
out += "\e[0;36m" out += "\e[0;36m"
when :white
out += "\e[0;37m"
when :reset when :reset
out += "\e[0m" out += "\e[0m"
end end