-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from barrientosvctor/develop
Several changes and improvements
- Loading branch information
Showing
5 changed files
with
309 additions
and
436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,24 @@ | ||
local colors = { | ||
bg = "#000c18", -- background | ||
fg = "#6688cc", -- foreground | ||
darkgreen = "#22aa44", -- strings | ||
green = "#44cb46", -- success | ||
darkblue = "#082050", -- active cursor line background | ||
purple = "#9966b8", -- all JSDoc | ||
pink = "#f280d0", -- numbers, booleans etc. | ||
lightgrey = "#80A2B7", -- active cursor line | ||
lowgrey = "#406385", -- inactive cursor line numbers | ||
darkgrey = "#225588", -- statements and symbols | ||
midblue= "#384887", | ||
shinyblue = "#2277ff", -- parameters color | ||
red = "#cb4444", | ||
darkred = "#770811", | ||
orange = "#FF9900", | ||
yellow = "#ddbb88", | ||
heavyyellow = "#FFEEBB", | ||
return { | ||
bg = "#000c18", -- background | ||
fg = "#6688cc", -- foreground | ||
darkgreen = "#22aa44", -- strings | ||
green = "#44cb46", -- success text color | ||
darkblue = "#082050", -- active cursor line background | ||
purple = "#9966b8", -- all JSDoc | ||
pink = "#f280d0", -- numbers, booleans etc. | ||
lightgrey = "#80A2B7", -- active cursor line | ||
lowgrey = "#406385", -- inactive cursor line numbers | ||
darkgrey = "#225588", -- statements and symbols | ||
midblue = "#384887", | ||
shinyblue = "#2277ff", -- parameters color | ||
red = "#cb4444", -- error text color | ||
darkred = "#770811", | ||
orange = "#FF9900", | ||
yellow = "#ddbb88", -- functions color | ||
heavyyellow = "#FFEEBB", | ||
|
||
-- Extras | ||
black = "#010101", | ||
white = "#ffffff", | ||
none = "NONE", | ||
-- Extras | ||
black = "#010101", | ||
white = "#ffffff", | ||
none = "NONE", | ||
} | ||
|
||
return colors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.