util.termcolours: Add 256 color support
authorKim Alvefur <zash@zash.se>
Sat, 27 Feb 2016 15:47:12 +0000 (16:47 +0100)
committerKim Alvefur <zash@zash.se>
Sat, 27 Feb 2016 15:47:12 +0000 (16:47 +0100)
util/termcolours.lua

index 279ff601574ff519a6a68afbd1a59d6e38b4b58a..5d06fd35ba28b0f6fb261bb30b8041733d384b31 100644 (file)
@@ -14,6 +14,7 @@ local char, format = string.char, string.format;
 local tonumber = tonumber;
 local ipairs = ipairs;
 local io_write = io.write;
+local m_floor = math.floor;
 
 local windows;
 if os.getenv("WINDIR") then
@@ -55,6 +56,30 @@ local function getstring(style, text)
        end
 end
 
+local function gray(n)
+       return m_floor(n*3/32)+0xe8;
+end
+local function color(r,g,b)
+       if r == g and g == b then
+               return gray(r);
+       end
+       r = m_floor(r*3/128);
+       g = m_floor(g*3/128);
+       b = m_floor(b*3/128);
+       return 0x10 + ( r * 36 ) + ( g * 6 ) + ( b );
+end
+local function hex2rgb(hex)
+       local r = tonumber(hex:sub(1,2),16);
+       local g = tonumber(hex:sub(3,4),16);
+       local b = tonumber(hex:sub(5,6),16);
+       return r,g,b;
+end
+
+setmetatable(stylemap, { __index = function(_, style)
+       local g = style:sub(7) == " background" and "48;5;" or "38;5;";
+       return g .. color(hex2rgb(style));
+end } );
+
 local function getstyle(...)
        local styles, result = { ... }, {};
        for i, style in ipairs(styles) do