# `MingaEditor.UI.Theme.Editor`
[🔗](https://github.com/jsmestad/minga/blob/main/lib/minga_editor/ui/theme.ex#L87)

Editor chrome colors: background, foreground, tilde lines, split borders, cursorline, nav-flash, highlight/selection.

# `t`

```elixir
@type t() :: %MingaEditor.UI.Theme.Editor{
  bg: MingaEditor.UI.Theme.color(),
  cursorline_bg: MingaEditor.UI.Theme.color() | nil,
  fg: MingaEditor.UI.Theme.color(),
  highlight_read_bg: MingaEditor.UI.Theme.color() | nil,
  highlight_write_bg: MingaEditor.UI.Theme.color() | nil,
  nav_flash_bg: MingaEditor.UI.Theme.color() | nil,
  selection_bg: MingaEditor.UI.Theme.color() | nil,
  split_border_fg: MingaEditor.UI.Theme.color(),
  tilde_fg: MingaEditor.UI.Theme.color()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
