# `Dala.Theme.Citrus`
[🔗](https://github.com/manhvu/dala/blob/main/lib/dala/theme/citrus.ex#L1)

Citrus theme for Dala — 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 Dala.App, theme: Dala.Theme.Citrus
    end

## Overrides

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

## Publishing your own theme

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

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

# `theme`

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

Returns the compiled Citrus theme struct.

---

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