fix: add other colors to ansikit

pull/5/head
TorchedSammy 2021-03-19 21:34:53 -04:00
parent 333141ab60
commit d2ec8478ac
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@ ansikit.text = function (text)
underline_off = {'{underline-off}', ansikit.getCSI(24)},
black = {'{black}', ansikit.getCSI(30)},
red = {'{red}', ansikit.getCSI(31)},
green = {'{green}', ansikit.getCSI(32)},
yellow = {'{yellow}', ansikit.getCSI(33)},
blue = {'{blue}', ansikit.getCSI(34)},
magenta = {'{magenta}', ansikit.getCSI(35)},
cyan = {'{cyan}', ansikit.getCSI(36)}
}