On Sat, Aug 20 2016, Simen Heggestøyl wrote: > The docstring for `color-name-to-rgb' states the following: > > "Normally the return value is a list of three floating-point numbers, > (RED GREEN BLUE), each between 0.0 and 1.0 inclusive." > > When passing the hex value for white the return value is as expected: > > (color-name-to-rgb "#ffffff") > ⇒ (1.0 1.0 1.0) > > But when passing the name of the same color, the return value becomes > different: > > (color-name-to-rgb "white") > ⇒ (1.00390625 1.00390625 1.00390625) What are the return values of: (color-values "white") and (color-values "#ffffff") ? -- Julien Danjou /* Free Software hacker https://julien.danjou.info */