# `GSGlyph isAnyColorGlyph`

*Instance Method*

Whether any layer uses a color-layer format.

## Declaration

```swift
func isAnyColorGlyph() -> Bool
```

```objc
- (BOOL) isAnyColorGlyph;
```

```python
isAnyColorGlyph() -> bool
```

## Discussion

This includes full-color, palette, SVG, and Apple bitmap color layers. Color-layer formats are not mutually exclusive.

## See Also

### Color Glyphs

- [`GSGlyph isFullColorGlyph`](/Core/GlyphsCore/GSGlyph/isFullColorGlyph) — Whether any layer is a full-color layer.
- [`GSGlyph isColorPaletteGlyph`](/Core/GlyphsCore/GSGlyph/isColorPaletteGlyph) — Whether any layer is a palette color layer.
- [`GSGlyph isSVGColorGlyph`](/Core/GlyphsCore/GSGlyph/isSVGColorGlyph) — Whether any layer is an SVG color layer.
- [`GSGlyph isAppleColorGlyph`](/Core/GlyphsCore/GSGlyph/isAppleColorGlyph) — Whether any layer is an Apple bitmap color layer.

