module Colors
Constants
- VERSION
- WHITE_POINT_D65
-
ITU-R BT.709 D65 white point See en.wikipedia.org/wiki/Rec._709 for details
Public Class Methods
Source
# File lib/colors.rb, line 30 def self.desaturate(c, factor) case c when String c = NamedColors[c] end c.desaturate(factor) end