Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RgbColor

import type { RgbColor } from "https://googleapis.deno.dev/v1/docs:v1.ts";

An RGB color.

interface RgbColor {
blue?: number;
green?: number;
red?: number;
}

§Properties

§
blue?: number
[src]

The blue component of the color, from 0.0 to 1.0.

§
green?: number
[src]

The green component of the color, from 0.0 to 1.0.

§
red?: number
[src]

The red component of the color, from 0.0 to 1.0.