diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 59b6497..007c8ff 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,16 +4,44 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] +- Light, medium contrast variant themes. +- Support for user config for bold and italic text. +- Full TreeSitter support. +- Lua version of color scheme for neovim. +- Better diff view colors. + + +## [0.1.0, Unreleased] - 2020-06-TBD -## [0.1.0] - 2020-06-20 ### Added - This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG. -- CNAME file to enable GitHub Pages custom domain -- README now contains answers to common questions about CHANGELOGs -- Good examples and basic guidelines, including proper date formatting. -- Counter-examples: "What makes unicorns cry?" +- New organization: [Spaceduck Theme](https://github.com/spaceduck-theme) + to track all ports. +- Hot new violet color: #5c6dcc + +### Changed +- Changed color names for more semantic consistency. + Ie: Went from 'purple1', 'purple2' to 'purple', 'dark purple', etc. +- Color corrected most colors to focus on 16bit color harmony. + (a huge departure from consistency with the 256 version): + - Red: #e33400 -> #f25244 + - Orange: #e39400 -> #f2b45c + - Yellow: #f2ce00 -> #f2e15c + - Purple: #7a5ccc -> #946cd9 + - Cyan: #00a3cc -> #59C2FF + - Magenta: #ce6f8f -> #cc7893 + - DarkPurple: #686f9a -> #535f97 + - Selection: #1b1c36 -> #30365F + + +### Removed +- No longer using estilo as a dependency to manage colors, instead using viml dictionary like other modern color schemes. + + +### Fixed +- Brighter comment color. Yes you can see actually see them now. #30365F -> #535f97 - - + diff --git a/colors/spaceduck.vim b/colors/spaceduck.vim index 5e27a3d..e41009f 100644 --- a/colors/spaceduck.vim +++ b/colors/spaceduck.vim @@ -29,19 +29,6 @@ let g:colors_name="spaceduck" " Testing... " Treesitter cleanup -" TODO: Add to changelog {{ -"lavender is now light purple -"purple2 is now purple -"darkpurple is now selection -"darkpurple2 is now darkpurple -"turquoise is now violet -"light_blue got removed -"deep_space is now background -"cream is now fg -"comment is using darkpurple -"oldcomment is using newColor? Violet? -" }} - " PALETTE: {{{ let s:palette = { \ 'red': ['#f25244', '203'], @@ -53,9 +40,7 @@ let s:palette = { \ 'darkpurple': ['#535f97', '236'], \ 'cyan': ['#59c2ff', '75'], \ 'magenta': ['#cc7893', '174'], - \ \ 'violet': ['#5c6dcc', '62'], - \ 'lightorange': ['#f29d61', '215'], \ \ 'background': ['#0f111b', '233'], \ 'foreground': ['#ecf0c1', '255'],