starlit  Diff

Differences From Artifact [121fdb8a0d]:

To Artifact [765cced2b5]:


    42     42   	};
    43     43   
    44     44   	tooltipper = function(dui)
    45     45   		-- takes a configuration table mapping affinities to colors.
    46     46   		-- 'neutral' is the only required affinity
    47     47   		return function(a)
    48     48   			local color = a.color and a.color:readable(0.65, 1.0)
    49         -			if color == nil then color = l.color(136,158,177) end
           49  +			if color == nil then color = l.color(.5,.5,.5) end
    50     50   			local str = a.title
    51     51   			if a.desc then
    52     52   				str = str .. '\n' .. color:fmt(minetest.wrap_text(a.desc,60))
    53     53   			end
    54     54   			if a.props then
    55     55   				-- str = str .. '\n'
    56     56   				for _,prop in pairs(a.props) do