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

Obsidian theme for Dala — deep blacks with a violet accent.

## Usage

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

## Overrides

Pass a keyword list as the second element of a tuple to override
individual tokens while keeping the rest of the Obsidian palette:

    use Dala.App, theme: {Dala.Theme.Obsidian, primary: :rose_500}

## 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 Obsidian theme struct.

---

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