# SolidPaint
Represents a solid color paint.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## SolidPaint interface

Represents a solid color paint.

**Signature:**

```typescript
interface SolidPaint
```

## Example

```ts
// Create a solid red paint in a group
group.createFill({
  type: "SOLID",
  color: { r: 255, g: 0, b: 0 },
});
```

## Properties

<table>
  <thead>
    <tr>
      <th>
        Property
      </th>

      <th>
        Modifiers
      </th>

      <th>
        Type
      </th>

      <th>
        Description
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        [color](/en/creator-api/values/solid-paint/color)
      </td>

      <td>
        `readonly`
      </td>

      <td>
        [Animatable](/en/creator-api/nodes/animatable)\<[Color](/en/creator-api/values/color)>
      </td>

      <td>
        The animatable color of the paint
      </td>
    </tr>

    <tr>
      <td>
        [type](/en/creator-api/values/solid-paint/type)
      </td>

      <td>
        `readonly`
      </td>

      <td>
        "SOLID"
      </td>

      <td>
        Paint type
      </td>
    </tr>
  </tbody>
</table>

## Methods

<table>
  <thead>
    <tr>
      <th>
        Method
      </th>

      <th>
        Description
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        [remove()](/en/creator-api/values/solid-paint/remove)
      </td>

      <td>
        Removes the paint from the shape layer or group it is applied to
      </td>
    </tr>
  </tbody>
</table>
