···12 <img src="assets/screenshot-0.png" alt="DarkEarth theme in neovim"/>
13</p>
1400000015## Installation
1617Lazy:
018```lua
19{
20 "ptdewey/darkearth-nvim",
···23```
2425`vim.pack`:
026```lua
27vim.pack.add({ "https://github.com/ptdewey/darkearth-nvim" })
28```
···30## Usage
3132```lua
033vim.cmd.colorscheme("darkearth")
00034```
3536## Build or Modify
37381. [fennel](https://github.com/bakpakin/Fennel) or [hotpot.nvim](https://github.com/rktjmp/hotpot.nvim/tree/main) is installed
39-2. Modify [fnl/darkearth/init.fnl](fnl/darkearth/init.fnl) as desired
40-3. Rebuild the colorscheme
41- - With `fennel`: Use `./build.sh` or `just build`
42- - With `hotpot.nvim`: Builds are automatic upon saving `fnl/darkearth/init.fnl`
004344-Note: The version of darkearth made with [lush](https://github.com/rktjmp/lush.nvim) can be found on the [v1 branch](https://github.com/ptdewey/darkearth-nvim/tree/v1)
4546## Extras
47···52- [miasma.nvim](https://github.com/xero/miasma.nvim) (What DarkEarth was originally forked from)
53- [Everforest](https://github.com/sainnhe/everforest)
54- [GruvBox](https://github.com/morhetz/gruvbox)
55-
···12 <img src="assets/screenshot-0.png" alt="DarkEarth theme in neovim"/>
13</p>
1415+DarkEarth also comes with a light variant, LightEarth.
16+17+<p align="center">
18+ <img src="assets/lightearth-screenshot.png" alt="LightEarth theme in neovim"/>
19+</p>
20+21## Installation
2223Lazy:
24+25```lua
26{
27 "ptdewey/darkearth-nvim",
···30```
3132`vim.pack`:
33+34```lua
35vim.pack.add({ "https://github.com/ptdewey/darkearth-nvim" })
36```
···38## Usage
3940```lua
41+-- DarkEarth
42vim.cmd.colorscheme("darkearth")
43+44+-- LightEarth
45+vim.cmd.colorscheme("lightearth")
46```
4748## Build or Modify
49501. [fennel](https://github.com/bakpakin/Fennel) or [hotpot.nvim](https://github.com/rktjmp/hotpot.nvim/tree/main) is installed
51+2. Modify the source files as desired:
52+ - Shared highlight groups are defined in [fnl/earth/macros.fnl](fnl/earth/macros.fnl)
53+ - Theme-specific colors and overrides are in [fnl/darkearth/init.fnl](fnl/darkearth/init.fnl) and [fnl/lightearth/init.fnl](fnl/lightearth/init.fnl)
54+3. Rebuild the colorschemes
55+ - With `fennel`: Use `./build.sh` or `just build`
56+ - With `hotpot.nvim`: Builds are automatic upon saving
5758+Note: The version of darkearth built with [lush](https://github.com/rktjmp/lush.nvim) can be found on the [v1 branch](https://github.com/ptdewey/darkearth-nvim/tree/v1)
5960## Extras
61···66- [miasma.nvim](https://github.com/xero/miasma.nvim) (What DarkEarth was originally forked from)
67- [Everforest](https://github.com/sainnhe/everforest)
68- [GruvBox](https://github.com/morhetz/gruvbox)
0