(body: ColorInput, start?: ColorInput)
| 592 | } |
| 593 | |
| 594 | function tone(body: ColorInput, start?: ColorInput): Tone { |
| 595 | return { |
| 596 | body, |
| 597 | start, |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | const fallbackSplashIndexed = Array.from({ length: 256 }, (_, index) => RGBA.fromIndex(index)) |
| 602 | const fallbackSplashLeft = RGBA.fromIndex(67) |