diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1e3d5d0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 github.com/10sr + contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..53db562 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Darken +Plugin with colorscheme of [micro](https://micro-editor.github.io/) editor. +## Install +From the command line, type ``micro -plugin install darken``. Or, in micro's command mode, type``plugin install darken``. diff --git a/colorschemes/darken.micro b/colorschemes/darken.micro new file mode 100644 index 0000000..7f8b54e --- /dev/null +++ b/colorschemes/darken.micro @@ -0,0 +1,24 @@ +color-link default "#E1E1E6,#191622" +color-link comment "#483C67" +color-link identifier "#FF79C6" +color-link constant "#AE81FF" +color-link constant.string "#E6DB74" +color-link constant.string.char "#BDE6AD" +color-link statement "#E96379" +color-link preproc "#F92672" +color-link type "#78D1E1" +color-link symbol "#E1E1E6" +color-link symbol.brackets "#E7BE79" +color-link special "#A6E22E" +color-link underlined "#D33682" +color-link error "bold #CB4B16" +color-link todo "bold #D33682" +color-link statusline "#191622,#F8F8F2" +color-link indent-char "#505050,#282828" +color-link line-number "#67E480,#191622" +color-link current-line-number "#67FF80,#191622" +color-link gutter-error "#CB4B16" +color-link gutter-warning "#E6DB74" +color-link cursor-line "#192039" +color-link color-column "#191622" +color-link statusline "#FFFFFF,#000000" diff --git a/darken.lua b/darken.lua new file mode 100644 index 0000000..b542ef9 --- /dev/null +++ b/darken.lua @@ -0,0 +1,5 @@ +VERSION = "1.0.0" + +local config = import("micro/config") + +config.AddRuntimeFile("darken", config.RTColorscheme, "colorschemes/darken.micro") diff --git a/darken.micro b/darken.micro new file mode 100644 index 0000000..a4eb347 --- /dev/null +++ b/darken.micro @@ -0,0 +1,21 @@ +color-link default "#D5D8D6,#1D0000" +color-link comment "#75715E" +color-link identifier "#66D9EF" +color-link constant "#AE81FF" +color-link constant.string "#E6DB74" +color-link constant.string.char "#BDE6AD" +color-link statement "#F92672" +color-link preproc "#CB4B16" +color-link type "#66D9EF" +color-link special "#A6E22E" +color-link underlined "#D33682" +color-link error "bold #CB4B16" +color-link todo "bold #D33682" +color-link statusline "#282828,#F8F8F2" +color-link indent-char "#505050,#282828" +color-link line-number "#AAAAAA,#282828" +color-link current-line-number "#AAAAAA,#282828" +color-link gutter-error "#CB4B16" +color-link gutter-warning "#E6DB74" +color-link cursor-line "#323232" +color-link color-column "#323232" diff --git a/help/darken.md b/help/darken.md new file mode 100644 index 0000000..822d084 --- /dev/null +++ b/help/darken.md @@ -0,0 +1,5 @@ +# Darken +Write your codes with theme darken based on terminals with schema that simulates night environment. +## Usage +Once installed use the ``set colorscheme darken`` command to set the new color schema. +Report any issues [here](https://github.com/informeai/darken/issues). diff --git a/repo.json b/repo.json new file mode 100644 index 0000000..8093aca --- /dev/null +++ b/repo.json @@ -0,0 +1,15 @@ +[{ + "Name": "darken", + "Description": "A dark colorscheme based on dark mode terminal for micro", + "Tags": ["darken","colorscheme","color","theme"], + "Website": "https://github.com/informeai/darken" + "Versions": [ + { + "Version": "1.0.0", + "Url": "https://github.com/informeai/darken/archive/v1.0.0.zip", + "Require": { + "micro": ">=2.0.1" + } + } + ] +}]