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

OptionalColor

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

A color that can either be fully opaque or fully transparent.

interface OptionalColor {
color?: Color;
}

§Properties

§
color?: Color
[src]

If set, this will be used as an opaque color. If unset, this represents a transparent color.