Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellington Gadelha authored and Wellington Gadelha committed Jul 20, 2021
0 parents commit f7d57ea
Show file tree
Hide file tree
Showing 7 changed files with 95 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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``.
24 changes: 24 additions & 0 deletions colorschemes/darken.micro
Original file line number Diff line number Diff line change
@@ -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"
5 changes: 5 additions & 0 deletions darken.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
VERSION = "1.0.0"

local config = import("micro/config")

config.AddRuntimeFile("darken", config.RTColorscheme, "colorschemes/darken.micro")
21 changes: 21 additions & 0 deletions darken.micro
Original file line number Diff line number Diff line change
@@ -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"
5 changes: 5 additions & 0 deletions help/darken.md
Original file line number Diff line number Diff line change
@@ -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).
15 changes: 15 additions & 0 deletions repo.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
]
}]

0 comments on commit f7d57ea

Please sign in to comment.