diff --git a/CHANGELOG.md b/CHANGELOG.md index abbd3ec..b4159e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `javascriptTSTagAttribute` highlight removed - `TSTagAttribute` highlight added - yellow changed to the same version as onedark palette. monsonjeremy/onedark.nvim#19 +- Boolean set to orange as in VSC onedark theme. monsonjeremy/onedark.nvim#19 ## [v0.0.3]- 11 Dec 2021 diff --git a/lua/onedark/theme.lua b/lua/onedark/theme.lua index 8629404..f101852 100644 --- a/lua/onedark/theme.lua +++ b/lua/onedark/theme.lua @@ -89,7 +89,7 @@ function M.setup(config) String = {fg = c.green}, -- a string constant: "this is a string" Character = {fg = c.green}, -- a character constant: 'c', '\n' -- Number = { }, -- a number constant: 234, 0xff - -- Boolean = { }, -- a boolean constant: TRUE, false + Boolean = {fg = c.orange}, -- a boolean constant: TRUE, false -- Float = { }, -- a floating point constant: 2.3e10 Identifier = {fg = c.red, style = config.variable_style}, -- (preferred) any variable name