.Extends-CSS .Paint-API{ } worklet registerPaint('slanted-bg', class SlantedBg { class { constructor () { this.hue = 110; } paint (ctx, geom, props, args) { // draw random colors ctx.fillStyle = 'hsl(' + this.hue + ', 100%, 50%)'; this.hue += 10; ... } } }) registerPaint('slanted-bg', SlantedBg) @nucliweb