温度变色
将温度或任何其他量转换为RGB颜色
安装
npm i temp-color
yarn add temp-color
用法
import { tempToColor } from 'temp-color' ;
const { r , g , b } = tempToColor ( 10 , - 30 , 30 ) ;
const { r , g , b } = tempToColor ( 10 , 0 , 100 , 'half' ) ;
const { r , g , b } = tempToColor ( 10 , - 30 , 30 , 'extended' ) ;
参数
tempToColor = (t: number, min: number, max: number, mode?: string) : {r: number, g: number, b: number
1