Google Docs · Schema

RgbColor

An RGB color.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
red number The red component of the color, from 0.0 to 1.0.
green number The green component of the color, from 0.0 to 1.0.
blue number The blue component of the color, from 0.0 to 1.0.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-rgb-color-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RgbColor",
  "type": "object",
  "description": "An RGB color.",
  "properties": {
    "red": {
      "type": "number",
      "description": "The red component of the color, from 0.0 to 1.0."
    },
    "green": {
      "type": "number",
      "description": "The green component of the color, from 0.0 to 1.0."
    },
    "blue": {
      "type": "number",
      "description": "The blue component of the color, from 0.0 to 1.0."
    }
  }
}