Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/holy-two/serum-theme-wired
a Serum theme using Wired Elements
https://github.com/holy-two/serum-theme-wired
serum-theme
Last synced: 9 days ago
JSON representation
a Serum theme using Wired Elements
- Host: GitHub
- URL: https://github.com/holy-two/serum-theme-wired
- Owner: holy-two
- License: mit
- Created: 2024-02-17T06:19:04.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-25T17:36:17.000Z (5 months ago)
- Last Synced: 2024-06-25T19:24:03.291Z (5 months ago)
- Topics: serum-theme
- Language: Elixir
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Serum.Themes.Wired
This is a [Serum](https://dalgona.github.io/Serum) theme using [Wired Elements](https://wiredjs.com/).
## Installation
Add the theme package to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:serum, "~> 1.1"},
{:serum_theme_wired, git: "https://github.com/holy-two/serum-theme-wired.git", branch: "main" }
# ...
]
end
```Run `mix` to fetch and build the theme package:
```shell
$ mix deps.get, deps.compile
```Configure your `serum.exs` to use `Serum.Themes.Wired` theme module:
```elixir
%{
theme: Serum.Themes.Wired,
# ...
}
```