(hex: string)
| 16 | return [((n >> 16) & 0xff) / 255, ((n >> 8) & 0xff) / 255, (n & 0xff) / 255]; |
| 17 | } |
| 18 | const glow = (hex: string) => nodeGlowBoost(...rgb(hex)); |
| 19 | |
| 20 | describe("edgeIntensityScale", () => { |
| 21 | it("is 1 at or below the reference edge count", () => { |
no test coverage detected