UNPKG

@thi.ng/color

Version:

Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets

38 lines 1.2 kB
import type { NumericArray } from "@thi.ng/api"; import type { IRandom } from "@thi.ng/random"; import type { Color, ColorFactory, ReadonlyColor, TypedColor } from "../api.js"; export declare class Oklch implements TypedColor<Oklch> { buf: NumericArray; offset: number; stride: number; l: number; c: number; h: number; alpha: number; [id: number]: number; readonly mode: "oklch"; readonly length: 4; readonly range: [ReadonlyColor, ReadonlyColor]; readonly xyz: [number, number, number]; [Symbol.iterator](): Iterator<number, any, undefined>; clamp(): this; copy(): Oklch; copyView(): Oklch; deref(): Color; empty(): Oklch; eqDelta(o: Oklch, eps?: number): boolean; randomize(rnd?: IRandom): this; set(src: ReadonlyColor): this; toJSON(): number[]; } /** * Oklch color type aka polar version of {@link oklab}. * * @remarks * Note: As with other hue-based color modes in this package, the hue is stored * normalized (in `[0,1]` interval) and NOT as degrees. * * Reference: https://bottosson.github.io/posts/oklab/ */ export declare const oklch: ColorFactory<Oklch>; //# sourceMappingURL=oklch.d.ts.map