diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | clear.lua | 3 | ||||
-rw-r--r-- | dark-clear.lua | 1 | ||||
-rw-r--r-- | dark.lua | 1 | ||||
-rw-r--r-- | light-clear.lua | 1 | ||||
-rw-r--r-- | light.lua | 1 |
6 files changed, 12 insertions, 4 deletions
@@ -1,10 +1,13 @@ # vis-minimal-theme -Minimal **dark** and **light** theme for [vis](https://github.com/martanne/vis) +Minimal **dark**, **light** and **clear** themes for [vis](https://github.com/martanne/vis) -We only use 3 shades of black and white per theme. +We only use 3 shades of black and white. -There are also **dark-clear** and **light-clear**, if you'd like to use the terminal background. +The **dark-clear** and **light-clear** themes has a transparent background, for +using the terminal background and a either black or white foreground. + +The **clear** theme uses a transparent background and the terminal foreground. ## Install @@ -1,5 +1,6 @@ -- vis-minimal-theme (https://github.com/erf/vis-minimal-theme) --- light-clear by Erlend Lind Madsen +-- clear by Erlend Lind Madsen +-- uses a transparent background and the terminal foreground local black0 = '#000000' local black1 = '#383838' diff --git a/dark-clear.lua b/dark-clear.lua index fb8f384..4ed247a 100644 --- a/dark-clear.lua +++ b/dark-clear.lua @@ -1,5 +1,6 @@ -- vis-minimal-theme (https://github.com/erf/vis-minimal-theme) -- dark-clear by Erlend Lind Madsen +-- uses a transparent background and a black foreground local black0 = '#000000' local black1 = '#383838' @@ -1,5 +1,6 @@ -- vis-minimal-theme (https://github.com/erf/vis-minimal-theme) -- dark by Erlend Lind Madsen +-- uses a black background and a white foreground local black0 = '#000000' local black1 = '#383838' diff --git a/light-clear.lua b/light-clear.lua index 56d0841..cd03b94 100644 --- a/light-clear.lua +++ b/light-clear.lua @@ -1,5 +1,6 @@ -- vis-minimal-theme (https://github.com/erf/vis-minimal-theme) -- light-clear by Erlend Lind Madsen +-- uses a transparent background and the white foreground local black0 = '#000000' local black1 = '#383838' @@ -1,5 +1,6 @@ -- vis-minimal-theme (https://github.com/erf/vis-minimal-theme) -- light by Erlend Lind Madsen +-- uses a black background and a white foreground local black0 = '#000000' local black1 = '#383838' |