Figma · Schema

Color

An RGBA color.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
r number Red channel value, between 0 and 1.
g number Green channel value, between 0 and 1.
b number Blue channel value, between 0 and 1.
a number Alpha channel value, between 0 and 1.
View JSON Schema on GitHub

JSON Schema

figma-files-color-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Color",
  "type": "object",
  "description": "An RGBA color.",
  "properties": {
    "r": {
      "type": "number",
      "description": "Red channel value, between 0 and 1."
    },
    "g": {
      "type": "number",
      "description": "Green channel value, between 0 and 1."
    },
    "b": {
      "type": "number",
      "description": "Blue channel value, between 0 and 1."
    },
    "a": {
      "type": "number",
      "description": "Alpha channel value, between 0 and 1."
    }
  }
}