Library
Module
Module type
Parameter
Class
Class type
This module deals with colors.
module Hsla : sig ... end
module Rgba' : sig ... end
module Rgba : sig ... end
val of_rgba : int -> int -> int -> float -> t
Creates a color
from integer RGB values between 0 and 255 and a floating point alpha value between 0.0 and 1.0. Algorithm adapted from: https://en.wikipedia.org/wiki/HSL_and_HSV
val of_rgb : int -> int -> int -> t
Creates a color
from RGB values between 0 and 255.
val of_rgba' : float -> float -> float -> float -> t
Creates a color
from RGB and alpha values between 0.0 and 1.0
val of_rgb' : float -> float -> float -> t
Creates a color
from RGB values between 0.0 and 1.0
val of_hsla : float -> float -> float -> float -> t
Creates a color
from Hue, Saturation, Lightness and Alpha values. Hue is in degrees, a float value between 0.0 and 360.0. Saturation, Lightness and Alpha are float values between 0.0 and 1.0
val of_hsl : float -> float -> float -> t
Creates a color
from Hue, Saturation and Lightness. Hue is in degrees, a float value between 0.0 and 360.0. Saturation and Lightness are float values between 0.0 and 1.0
Converts a color
to its rgba value. All values are floats between 0.0 and 1.0
Converts a color
to its rgba value. RGB values are integers in the range of 0 to 255. The alpha channel is a float between 0.0 and 1.0
val to_hexstring : t -> string
Converts a color to its hexadecimal representation. The alpha channel is not represented.