颜色渐变配方
Color Ramp Formulator是一个开源桌面应用程序,用于生成算法定义的色带,利用公式。
此应用程序使用构建,适用于 macOS、Linux 和 Windows 操作系统。
例子
CubeHelix(命运)
cubehelix_color ( 1 - t , 0 , 0.4 , 0.8 , 1 , [ 0.15 , 0.85 ] )
发散
rgb_t
(
cos ( ( t - 2 / 6 ) * PI ) ,
cos ( ( t - 3 / 6 ) * PI ) ,
cos ( ( t - 4 / 6 ) * PI )
)
花式(三元)
rgb
(
( x < 127.5 ) ? 255 - ( 2 * x ) : ( 2 * x ) - 255 ,
( x < 127.5 ) ? 1.5 * x : 127
1