---
title: TerminalStyleName
---

# TerminalStyleName

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/terminal/src/lib/ansi.ts#L62" target="_blank">View Source</a>

## Summary

Any named terminal style supported by `createStyles()`.

## Signature

```ts
type TerminalStyleName =
  | TerminalModifierName
  | TerminalForegroundColorName
  | TerminalBackgroundColorName;

```