# `Mob.Theme.Citrus`
[🔗](https://github.com/genericjam/mob/blob/main/lib/mob/theme/citrus.ex#L1)

Citrus theme for Mob — warm charcoal with a lime-green accent.

High-contrast and energetic. Works well for utility apps, dashboards,
and anywhere you want punchy, readable UI with an earthy warmth.

## Usage

    defmodule MyApp do
      use Mob.App, theme: Mob.Theme.Citrus
    end

## Overrides

    use Mob.App, theme: {Mob.Theme.Citrus, primary: :lime_300}

## Publishing your own theme

Any module that exports `theme/0 :: Mob.Theme.t()` works as a Mob theme.
You can publish yours as a standalone Hex package and users import it the
same way:

    use Mob.App, theme: AcmeCorp.Theme.Dark

# `theme`

```elixir
@spec theme() :: Mob.Theme.t()
```

Returns the compiled Citrus theme struct.

---

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