Google Slides · Schema

ColorStop

A color and position in a gradient band.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
alpha number The alpha value of this color in the gradient band. Defaults to 1.0, fully opaque.
position number The relative position of the color stop in the gradient band measured in percentage.
View JSON Schema on GitHub

JSON Schema

google-slides-color-stop-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ColorStop",
  "type": "object",
  "description": "A color and position in a gradient band.",
  "properties": {
    "alpha": {
      "type": "number",
      "description": "The alpha value of this color in the gradient band. Defaults to 1.0, fully opaque.\n"
    },
    "position": {
      "type": "number",
      "description": "The relative position of the color stop in the gradient band measured in percentage.\n"
    }
  }
}