> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# zeplin-styles

> Zeplin Styles - colors, text styles, spacing, design tokens, styleguides

**Server path:** `/zeplin-styles` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                      | Description                            |
| --------------------------------------------------------------------------------------------------------- | -------------------------------------- |
| [`zeplin_styles_create_project_color`](#zeplin_styles_create_project_color)                               | Create project color                   |
| [`zeplin_styles_create_styleguide_color`](#zeplin_styles_create_styleguide_color)                         | Create styleguide color                |
| [`zeplin_styles_get_project_colors`](#zeplin_styles_get_project_colors)                                   | Get project colors                     |
| [`zeplin_styles_get_project_design_tokens`](#zeplin_styles_get_project_design_tokens)                     | Get project design tokens              |
| [`zeplin_styles_get_project_spacing_sections`](#zeplin_styles_get_project_spacing_sections)               | Get spacing sections of the project    |
| [`zeplin_styles_get_project_spacing_tokens`](#zeplin_styles_get_project_spacing_tokens)                   | Get spacing tokens of the project      |
| [`zeplin_styles_get_project_text_styles`](#zeplin_styles_get_project_text_styles)                         | Get project text styles                |
| [`zeplin_styles_get_project_variable_collections`](#zeplin_styles_get_project_variable_collections)       | Get project variable collections       |
| [`zeplin_styles_get_styleguide`](#zeplin_styles_get_styleguide)                                           | Get a single styleguide                |
| [`zeplin_styles_get_styleguide_colors`](#zeplin_styles_get_styleguide_colors)                             | Get styleguide colors                  |
| [`zeplin_styles_get_styleguide_design_tokens`](#zeplin_styles_get_styleguide_design_tokens)               | Get styleguide design tokens           |
| [`zeplin_styles_get_styleguide_linked_projects`](#zeplin_styles_get_styleguide_linked_projects)           | Get linked projects                    |
| [`zeplin_styles_get_styleguide_members`](#zeplin_styles_get_styleguide_members)                           | Get styleguide members                 |
| [`zeplin_styles_get_styleguide_spacing_sections`](#zeplin_styles_get_styleguide_spacing_sections)         | Get spacing sections of the styleguide |
| [`zeplin_styles_get_styleguide_spacing_tokens`](#zeplin_styles_get_styleguide_spacing_tokens)             | Get spacing tokens of the styleguide   |
| [`zeplin_styles_get_styleguide_text_styles`](#zeplin_styles_get_styleguide_text_styles)                   | Get styleguide text styles             |
| [`zeplin_styles_get_styleguide_variable_collections`](#zeplin_styles_get_styleguide_variable_collections) | Get styleguide variable collections    |
| [`zeplin_styles_get_styleguides`](#zeplin_styles_get_styleguides)                                         | Get all member styleguides             |
| [`zeplin_styles_invite_styleguide_member`](#zeplin_styles_invite_styleguide_member)                       | Invite a member                        |
| [`zeplin_styles_remove_styleguide_member`](#zeplin_styles_remove_styleguide_member)                       | Remove a member                        |
| [`zeplin_styles_update_project_color`](#zeplin_styles_update_project_color)                               | Update project color                   |
| [`zeplin_styles_update_project_spacing_token`](#zeplin_styles_update_project_spacing_token)               | Update project spacing token           |
| [`zeplin_styles_update_project_text_style`](#zeplin_styles_update_project_text_style)                     | Update project text style              |
| [`zeplin_styles_update_styleguide`](#zeplin_styles_update_styleguide)                                     | Update a styleguide                    |
| [`zeplin_styles_update_styleguide_color`](#zeplin_styles_update_styleguide_color)                         | Update styleguide color                |
| [`zeplin_styles_update_styleguide_spacing_token`](#zeplin_styles_update_styleguide_spacing_token)         | Update styleguide spacing token        |
| [`zeplin_styles_update_styleguide_text_style`](#zeplin_styles_update_styleguide_text_style)               | Update styleguide text style           |

***

## zeplin\_styles\_create\_project\_color

Create project color

**Parameters:**

| Parameter    | Type    | Required | Default | Description                           |
| ------------ | ------- | -------- | ------- | ------------------------------------- |
| `project_id` | string  | Yes      | —       | Project id                            |
| `a`          | number  | Yes      | —       | Alpha component of the color          |
| `b`          | integer | Yes      | —       | Blue component of the color           |
| `g`          | integer | Yes      | —       | Green component of the color          |
| `name`       | string  | Yes      | —       | Name of the color                     |
| `r`          | integer | Yes      | —       | Red component of the color            |
| `source_id`  | string  | No       | —       | Color's identifier in the design tool |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "a": {
        "type": "number",
        "description": "Alpha component of the color"
      },
      "b": {
        "type": "integer",
        "description": "Blue component of the color"
      },
      "g": {
        "type": "integer",
        "description": "Green component of the color"
      },
      "name": {
        "type": "string",
        "description": "Name of the color"
      },
      "r": {
        "type": "integer",
        "description": "Red component of the color"
      },
      "source_id": {
        "type": "string",
        "description": "Color's identifier in the design tool"
      }
    },
    "required": [
      "PCID",
      "project_id",
      "a",
      "b",
      "g",
      "name",
      "r"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_create\_styleguide\_color

Create styleguide color

**Parameters:**

| Parameter       | Type    | Required | Default | Description                           |
| --------------- | ------- | -------- | ------- | ------------------------------------- |
| `styleguide_id` | string  | Yes      | —       | Styleguide id                         |
| `a`             | number  | Yes      | —       | Alpha component of the color          |
| `b`             | integer | Yes      | —       | Blue component of the color           |
| `g`             | integer | Yes      | —       | Green component of the color          |
| `name`          | string  | Yes      | —       | Name of the color                     |
| `r`             | integer | Yes      | —       | Red component of the color            |
| `source_id`     | string  | No       | —       | Color's identifier in the design tool |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "a": {
        "type": "number",
        "description": "Alpha component of the color"
      },
      "b": {
        "type": "integer",
        "description": "Blue component of the color"
      },
      "g": {
        "type": "integer",
        "description": "Green component of the color"
      },
      "name": {
        "type": "string",
        "description": "Name of the color"
      },
      "r": {
        "type": "integer",
        "description": "Red component of the color"
      },
      "source_id": {
        "type": "string",
        "description": "Color's identifier in the design tool"
      }
    },
    "required": [
      "PCID",
      "styleguide_id",
      "a",
      "b",
      "g",
      "name",
      "r"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_project\_colors

Get project colors

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `project_id`                 | string  | Yes      | —       | Project id                                   |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "project_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_project\_design\_tokens

Get project design tokens

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `project_id`                 | string  | Yes      | —       | Project id                                   |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |
| `token_name_case`            | string  | No       | —       | Case for token names                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      },
      "token_name_case": {
        "type": "string",
        "description": "Case for token names",
        "enum": [
          "kebab",
          "snake",
          "camel",
          "pascal",
          "constant",
          "original"
        ]
      }
    },
    "required": [
      "PCID",
      "project_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_project\_spacing\_sections

Get spacing sections of the project

**Parameters:**

| Parameter    | Type    | Required | Default | Description       |
| ------------ | ------- | -------- | ------- | ----------------- |
| `project_id` | string  | Yes      | —       | Project id        |
| `limit`      | integer | No       | —       | Pagination limit  |
| `offset`     | integer | No       | —       | Pagination offset |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "project_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_project\_spacing\_tokens

Get spacing tokens of the project

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `project_id`                 | string  | Yes      | —       | Project id                                   |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "project_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_project\_text\_styles

Get project text styles

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `project_id`                 | string  | Yes      | —       | Project id                                   |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "project_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_project\_variable\_collections

Get project variable collections

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `project_id`                 | string  | Yes      | —       | Project id                                   |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "project_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide

Get a single styleguide

**Parameters:**

| Parameter           | Type   | Required | Default | Description             |
| ------------------- | ------ | -------- | ------- | ----------------------- |
| `styleguide_id`     | string | Yes      | —       | Styleguide id           |
| `linked_project`    | string | No       | —       | Reference project id    |
| `linked_styleguide` | string | No       | —       | Reference styleguide id |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_colors

Get styleguide colors

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `styleguide_id`              | string  | Yes      | —       | Styleguide id                                |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `linked_project`             | string  | No       | —       | Reference project id                         |
| `linked_styleguide`          | string  | No       | —       | Reference styleguide id                      |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_design\_tokens

Get styleguide design tokens

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `styleguide_id`              | string  | Yes      | —       | Styleguide id                                |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |
| `token_name_case`            | string  | No       | —       | Case for token names                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      },
      "token_name_case": {
        "type": "string",
        "description": "Case for token names",
        "enum": [
          "kebab",
          "snake",
          "camel",
          "pascal",
          "constant",
          "original"
        ]
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_linked\_projects

Get linked projects

**Parameters:**

| Parameter       | Type    | Required | Default | Description       |
| --------------- | ------- | -------- | ------- | ----------------- |
| `styleguide_id` | string  | Yes      | —       | Styleguide id     |
| `limit`         | integer | No       | —       | Pagination limit  |
| `offset`        | integer | No       | —       | Pagination offset |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_members

Get styleguide members

**Parameters:**

| Parameter           | Type    | Required | Default | Description             |
| ------------------- | ------- | -------- | ------- | ----------------------- |
| `styleguide_id`     | string  | Yes      | —       | Styleguide id           |
| `limit`             | integer | No       | —       | Pagination limit        |
| `offset`            | integer | No       | —       | Pagination offset       |
| `linked_project`    | string  | No       | —       | Reference project id    |
| `linked_styleguide` | string  | No       | —       | Reference styleguide id |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_spacing\_sections

Get spacing sections of the styleguide

**Parameters:**

| Parameter           | Type    | Required | Default | Description             |
| ------------------- | ------- | -------- | ------- | ----------------------- |
| `styleguide_id`     | string  | Yes      | —       | Styleguide id           |
| `limit`             | integer | No       | —       | Pagination limit        |
| `offset`            | integer | No       | —       | Pagination offset       |
| `linked_project`    | string  | No       | —       | Reference project id    |
| `linked_styleguide` | string  | No       | —       | Reference styleguide id |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_spacing\_tokens

Get spacing tokens of the styleguide

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `styleguide_id`              | string  | Yes      | —       | Styleguide id                                |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `linked_project`             | string  | No       | —       | Reference project id                         |
| `linked_styleguide`          | string  | No       | —       | Reference styleguide id                      |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_text\_styles

Get styleguide text styles

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `styleguide_id`              | string  | Yes      | —       | Styleguide id                                |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `linked_project`             | string  | No       | —       | Reference project id                         |
| `linked_styleguide`          | string  | No       | —       | Reference styleguide id                      |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguide\_variable\_collections

Get styleguide variable collections

**Parameters:**

| Parameter                    | Type    | Required | Default | Description                                  |
| ---------------------------- | ------- | -------- | ------- | -------------------------------------------- |
| `styleguide_id`              | string  | Yes      | —       | Styleguide id                                |
| `limit`                      | integer | No       | —       | Pagination limit                             |
| `offset`                     | integer | No       | —       | Pagination offset                            |
| `include_linked_styleguides` | boolean | No       | —       | Whether to include linked styleguides or not |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "include_linked_styleguides": {
        "type": "boolean",
        "description": "Whether to include linked styleguides or not"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_get\_styleguides

Get all member styleguides

**Parameters:**

| Parameter           | Type    | Required | Default | Description                                                                 |
| ------------------- | ------- | -------- | ------- | --------------------------------------------------------------------------- |
| `limit`             | integer | No       | —       | Pagination limit                                                            |
| `offset`            | integer | No       | —       | Pagination offset                                                           |
| `workspace`         | string  | No       | —       | Workspace of the styleguide, it can be `personal` or the id of organization |
| `status`            | string  | No       | —       | Filter by status                                                            |
| `linked_project`    | string  | No       | —       | Reference project id                                                        |
| `linked_styleguide` | string  | No       | —       | Reference styleguide id                                                     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "limit": {
        "type": "integer",
        "description": "Pagination limit"
      },
      "offset": {
        "type": "integer",
        "description": "Pagination offset"
      },
      "workspace": {
        "type": "string",
        "description": "Workspace of the styleguide, it can be `personal` or the id of organization"
      },
      "status": {
        "type": "string",
        "description": "Filter by status",
        "enum": [
          "active",
          "archived"
        ]
      },
      "linked_project": {
        "type": "string",
        "description": "Reference project id"
      },
      "linked_styleguide": {
        "type": "string",
        "description": "Reference styleguide id"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_invite\_styleguide\_member

Invite a member

**Parameters:**

| Parameter       | Type   | Required | Default | Description                                                                                                         |
| --------------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------- |
| `styleguide_id` | string | Yes      | —       | Styleguide id                                                                                                       |
| `handle`        | string | Yes      | —       | Email, username or unique identifier of the user  Can also be `"me"` for joining the styleguide as the current user |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "handle": {
        "type": "string",
        "description": "Email, username or unique identifier of the user  Can also be `\"me\"` for joining the styleguide as the current user"
      }
    },
    "required": [
      "PCID",
      "styleguide_id",
      "handle"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_remove\_styleguide\_member

Remove a member

**Parameters:**

| Parameter       | Type   | Required | Default | Description   |
| --------------- | ------ | -------- | ------- | ------------- |
| `styleguide_id` | string | Yes      | —       | Styleguide id |
| `member_id`     | string | Yes      | —       | Member id     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "member_id": {
        "type": "string",
        "description": "Member id"
      }
    },
    "required": [
      "PCID",
      "styleguide_id",
      "member_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_project\_color

Update project color

**Parameters:**

| Parameter    | Type    | Required | Default | Description                  |
| ------------ | ------- | -------- | ------- | ---------------------------- |
| `project_id` | string  | Yes      | —       | Project id                   |
| `color_id`   | string  | Yes      | —       | Color id                     |
| `a`          | number  | No       | —       | Alpha component of the color |
| `b`          | integer | No       | —       | Blue component of the color  |
| `g`          | integer | No       | —       | Green component of the color |
| `name`       | string  | No       | —       | Name of the color            |
| `r`          | integer | No       | —       | Red component of the color   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "color_id": {
        "type": "string",
        "description": "Color id"
      },
      "a": {
        "type": "number",
        "description": "Alpha component of the color"
      },
      "b": {
        "type": "integer",
        "description": "Blue component of the color"
      },
      "g": {
        "type": "integer",
        "description": "Green component of the color"
      },
      "name": {
        "type": "string",
        "description": "Name of the color"
      },
      "r": {
        "type": "integer",
        "description": "Red component of the color"
      }
    },
    "required": [
      "PCID",
      "project_id",
      "color_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_project\_spacing\_token

Update project spacing token

**Parameters:**

| Parameter          | Type   | Required | Default | Description            |
| ------------------ | ------ | -------- | ------- | ---------------------- |
| `project_id`       | string | Yes      | —       | Project id             |
| `spacing_token_id` | string | Yes      | —       | Spacing token id       |
| `name`             | string | No       | —       | The name of the token  |
| `value`            | number | No       | —       | The value of the token |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "spacing_token_id": {
        "type": "string",
        "description": "Spacing token id"
      },
      "name": {
        "type": "string",
        "description": "The name of the token"
      },
      "value": {
        "type": "number",
        "description": "The value of the token"
      }
    },
    "required": [
      "PCID",
      "project_id",
      "spacing_token_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_project\_text\_style

Update project text style

**Parameters:**

| Parameter       | Type   | Required | Default | Description            |
| --------------- | ------ | -------- | ------- | ---------------------- |
| `project_id`    | string | Yes      | —       | Project id             |
| `text_style_id` | string | Yes      | —       | Text style id          |
| `color`         | object | No       | —       | The color value        |
| `name`          | string | No       | —       | Name of the text style |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "project_id": {
        "type": "string",
        "description": "Project id"
      },
      "text_style_id": {
        "type": "string",
        "description": "Text style id"
      },
      "color": {
        "type": "object",
        "description": "The color value",
        "properties": {
          "source_id": {
            "type": "string",
            "description": "Color's identifier in the design tool"
          },
          "r": {
            "type": "integer",
            "description": "Red component of the color"
          },
          "g": {
            "type": "integer",
            "description": "Green component of the color"
          },
          "b": {
            "type": "integer",
            "description": "Blue component of the color"
          },
          "a": {
            "type": "number",
            "description": "Alpha component of the color"
          }
        },
        "required": [
          "r",
          "g",
          "b",
          "a"
        ]
      },
      "name": {
        "type": "string",
        "description": "Name of the text style"
      }
    },
    "required": [
      "PCID",
      "project_id",
      "text_style_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_styleguide

Update a styleguide

**Parameters:**

| Parameter                     | Type   | Required | Default | Description                        |                                                                                                          |
| ----------------------------- | ------ | -------- | ------- | ---------------------------------- | -------------------------------------------------------------------------------------------------------- |
| `styleguide_id`               | string | Yes      | —       | Styleguide id                      |                                                                                                          |
| `description`                 | string | No       | —       | New description for the styleguide |                                                                                                          |
| `linked_parent_styleguide_id` | string | null     | No      | —                                  | The unique id of the styleguide to be linked as parent. Set null to unlink the linked parent styleguide. |
| `name`                        | string | No       | —       | New name for the styleguide        |                                                                                                          |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "description": {
        "type": "string",
        "description": "New description for the styleguide"
      },
      "linked_parent_styleguide_id": {
        "type": [
          "string",
          "null"
        ],
        "description": "The unique id of the styleguide to be linked as parent. Set null to unlink the linked parent styleguide."
      },
      "name": {
        "type": "string",
        "description": "New name for the styleguide"
      }
    },
    "required": [
      "PCID",
      "styleguide_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_styleguide\_color

Update styleguide color

**Parameters:**

| Parameter       | Type    | Required | Default | Description                  |
| --------------- | ------- | -------- | ------- | ---------------------------- |
| `styleguide_id` | string  | Yes      | —       | Styleguide id                |
| `color_id`      | string  | Yes      | —       | Color id                     |
| `a`             | number  | No       | —       | Alpha component of the color |
| `b`             | integer | No       | —       | Blue component of the color  |
| `g`             | integer | No       | —       | Green component of the color |
| `name`          | string  | No       | —       | Name of the color            |
| `r`             | integer | No       | —       | Red component of the color   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "color_id": {
        "type": "string",
        "description": "Color id"
      },
      "a": {
        "type": "number",
        "description": "Alpha component of the color"
      },
      "b": {
        "type": "integer",
        "description": "Blue component of the color"
      },
      "g": {
        "type": "integer",
        "description": "Green component of the color"
      },
      "name": {
        "type": "string",
        "description": "Name of the color"
      },
      "r": {
        "type": "integer",
        "description": "Red component of the color"
      }
    },
    "required": [
      "PCID",
      "styleguide_id",
      "color_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_styleguide\_spacing\_token

Update styleguide spacing token

**Parameters:**

| Parameter          | Type   | Required | Default | Description            |
| ------------------ | ------ | -------- | ------- | ---------------------- |
| `styleguide_id`    | string | Yes      | —       | Styleguide id          |
| `spacing_token_id` | string | Yes      | —       | Spacing token id       |
| `name`             | string | No       | —       | The name of the token  |
| `value`            | number | No       | —       | The value of the token |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "spacing_token_id": {
        "type": "string",
        "description": "Spacing token id"
      },
      "name": {
        "type": "string",
        "description": "The name of the token"
      },
      "value": {
        "type": "number",
        "description": "The value of the token"
      }
    },
    "required": [
      "PCID",
      "styleguide_id",
      "spacing_token_id"
    ]
  }
  ```
</Expandable>

***

## zeplin\_styles\_update\_styleguide\_text\_style

Update styleguide text style

**Parameters:**

| Parameter       | Type   | Required | Default | Description            |
| --------------- | ------ | -------- | ------- | ---------------------- |
| `styleguide_id` | string | Yes      | —       | Styleguide id          |
| `text_style_id` | string | Yes      | —       | Text style id          |
| `color`         | object | No       | —       | The color value        |
| `name`          | string | No       | —       | Name of the text style |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "styleguide_id": {
        "type": "string",
        "description": "Styleguide id"
      },
      "text_style_id": {
        "type": "string",
        "description": "Text style id"
      },
      "color": {
        "type": "object",
        "description": "The color value",
        "properties": {
          "source_id": {
            "type": "string",
            "description": "Color's identifier in the design tool"
          },
          "r": {
            "type": "integer",
            "description": "Red component of the color"
          },
          "g": {
            "type": "integer",
            "description": "Green component of the color"
          },
          "b": {
            "type": "integer",
            "description": "Blue component of the color"
          },
          "a": {
            "type": "number",
            "description": "Alpha component of the color"
          }
        },
        "required": [
          "r",
          "g",
          "b",
          "a"
        ]
      },
      "name": {
        "type": "string",
        "description": "Name of the text style"
      }
    },
    "required": [
      "PCID",
      "styleguide_id",
      "text_style_id"
    ]
  }
  ```
</Expandable>
