RuralDatabase/apps/web/utils/color.ts

15 lines
256 B
TypeScript
Raw Normal View History

2024-06-30 21:39:37 +08:00
import { graphic } from 'echarts'
export function linearColor(color1: string, color2: string) {
return new graphic.LinearGradient(0, 0, 1, 1, [
{
offset: 0,
color: color1,
},
{
offset: 1,
color: color2,
},
])
}