1 parent d7b1eb5 commit 5195f2aCopy full SHA for 5195f2a
1 file changed
src/demo/slice.ts
@@ -41,7 +41,9 @@ export function renderSlice(host: HTMLElement, input: SliceInput): void {
41
42
// The shell itself, filled with real gamut colors: each lightness column is a
43
// vertical gradient from neutral (chroma 0, bottom) up to the boundary color.
44
- const ROWS = 56;
+ // The column is a single lightness, so the count sets how finely the *lightness*
45
+ // (horizontal) axis is sampled — high enough that the steps read as continuous.
46
+ const ROWS = 180;
47
let defs = '';
48
let fill = '';
49
for (let i = 0; i < ROWS; i++) {
0 commit comments