OBJECT

Color

A Pantone Color

link GraphQL Schema definition

  • type Color {
  • # Color Code/Number, which identifies a Pantone Color
  • code: String!
  • # Pantone Book of which the Color is part of
  • book: Book
  • # Name of the Pantone Color
  • name: String
  • # RGB values, based on sRGB values
  • rgb: RGB
  • # Closest CMYK based on Pantone printing process (further information can be
  • # obtained in the Bridge Formula Guide)
  • cmyk: CMYK
  • # Hexadecimal value
  • hex: String
  • # L*a*b* values
  • # #### Access to this data needs specific permissions
  • lab: LAB
  • # Color values in different color spaces and measurement specs
  • colorValues: ColorValues
  • # Color recipes
  • recipes: Recipes
  • # Which position the Color has in its Pantone Book (sorting index)
  • positionInBook: Int
  • # The number of the color in the coresponding book
  • pageNumberInBook: String
  • # Closest Colors in the same Pantone Book as the Color itself
  • closestColorsInBook: [Color]
  • # Color page URL on Pantone website
  • url: String
  • # Color metadata
  • metadata: ColorMetadata
  • }