aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 52af7b49a1b841713f14ec18a3c0af740452ad9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# vis-minimal-theme

Minimal black and white themes for [vis](https://github.com/martanne/vis)

- dark

<img width="400" alt="dark" src="https://user-images.githubusercontent.com/1562523/149605406-8e859f34-9f27-4a7f-a08e-76b64c9a71f4.png">

- light

<img width="400" alt="light" src="https://user-images.githubusercontent.com/1562523/149605422-dd55be44-7969-4096-b16e-9d5c53c63872.png">

We only uses 3 shades of black and 3 shades of white per theme.

## Install

Install manually or using [vis-plug](https://github.com/erf/vis-plug)

Example `visrc.lua`:

```Lua
local plug = require('plugins/vis-plug')

local conf = {
	{ url = 'erf/vis-minimal-theme', theme = true, file = 'dark' },
}

plug.init(conf, true)

```