diff --git a/README.md b/README.md index 515ac89..192a20c 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ local colors = require("onenord.colors").load() require("onenord").setup({ custom_highlights = { - ["@constructor"] = { fg = colors.dark_blue }, + ["@constructor"] = { fg = colors.dark_blue, style = 'bold' }, }, custom_colors = { red = "#ffffff", @@ -134,7 +134,7 @@ local colors = require("onenord.colors").load() require("onenord").setup({ custom_highlights = { light = { - ["@constructor"] = { fg = colors.dark_blue }, -- only applies in light theme + ["@constructor"] = { fg = colors.dark_blue, style = 'bold' }, -- only applies in light theme }, }, custom_colors = { diff --git a/doc/onenord.nvim.txt b/doc/onenord.nvim.txt index 39644ff..3071be6 100644 --- a/doc/onenord.nvim.txt +++ b/doc/onenord.nvim.txt @@ -137,7 +137,7 @@ Here is an example of overwriting the default highlight groups and colors: require("onenord").setup({ custom_highlights = { - ["@constructor"] = { fg = colors.dark_blue }, + ["@constructor"] = { fg = colors.dark_blue, style = 'bold' }, }, custom_colors = { red = "#ffffff", @@ -152,7 +152,7 @@ If you use the `light` and `dark` keys, the override will be specific to those t require("onenord").setup({ custom_highlights = { light = { - ["@constructor"] = { fg = colors.dark_blue }, -- only applies in light theme + ["@constructor"] = { fg = colors.dark_blue, style = 'bold' }, -- only applies in light theme }, }, custom_colors = {