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

Birch theme for Dala — warm parchment surfaces with a chestnut-brown accent.

A light warm theme. Calm and readable — works well for content-heavy apps,
reading interfaces, and anywhere you want a natural, unhurried feel.

## Usage

    defmodule MyApp do
      use Dala.App, theme: Dala.Theme.Birch
    end

## Overrides

    use Dala.App, theme: {Dala.Theme.Birch, primary: :brown_400}

## 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.Light

# `theme`

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

Returns the compiled Birch theme struct.

---

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