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

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

## Overrides

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

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

# `theme`

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

Returns the compiled Birch theme struct.

---

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