diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 17:39:05 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 17:39:05 +0900 |
commit | 44ff8e449dba0de32500da3c3f17fc1361449717 (patch) | |
tree | 07e4c665829236e733316ae6f2684fe03b0a6781 | |
parent | 81c192d84cba54485508727fe7262c00c876506e (diff) |
Add document of colorscheme
-rw-r--r-- | docs/properties.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/properties.md b/docs/properties.md index 921fbff..2fb6d20 100644 --- a/docs/properties.md +++ b/docs/properties.md @@ -52,3 +52,19 @@ Each character represents the following: ``` :set complete=sbh ``` + +## `colorscheme` + +Set color scheme on the console. The allowed value is one of `light`, `dark`, +and `system` (default). `light` and `dark` indicate the light-mode and +dark-mode are used in the console, respectively. `system` indicate the +preferred color configured by system settings is used (see also +[prefers-color-scheme][]). + +``` +set colorscheme=system " Use system settings +set colorscheme=light " Light mode +set colorscheme=dark " Dark mode +``` + +[prefers-color-scheme]: https://developer.mozilla.org/docs/Web/CSS/@media/prefers-color-scheme |