From fb5bcbc349eb862ca30152f6edb4d761dae60cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 22 Jun 2026 20:05:19 +0200 Subject: [PATCH] fix: align bat Nord theme with micro Nord theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Booleans (true/false) → #81A1C1 nord9, matching micro constant.bool - Other constants (null, undefined) stay #B48EAD nord15 - Add preprocessor/directive rule → #5E81AC nord10, matching micro preproc - Add brackets/braces rule → #D8DEE9 nord4, matching micro symbol.brackets Co-Authored-By: Claude Sonnet 4.6 --- .config/bat/themes/Nord.tmTheme | 41 +++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/.config/bat/themes/Nord.tmTheme b/.config/bat/themes/Nord.tmTheme index c937331..40ae67e 100644 --- a/.config/bat/themes/Nord.tmTheme +++ b/.config/bat/themes/Nord.tmTheme @@ -126,9 +126,21 @@ name - Constants & booleans + Boolean constants (true / false) scope - constant.language, constant.language.boolean, constant.language.true, constant.language.false, constant.language.null, constant.language.undefined, variable.other.constant, entity.name.constant + constant.language.boolean, constant.language.true, constant.language.false + settings + + foreground + #81A1C1 + + + + + name + Other language constants (null, undefined, …) + scope + constant.language, constant.language.null, constant.language.undefined, variable.other.constant, entity.name.constant settings foreground @@ -190,6 +202,31 @@ + + name + Brackets & braces + scope + punctuation.section, punctuation.section.block, punctuation.section.brackets, punctuation.section.parens, meta.brace + settings + + foreground + #D8DEE9 + + + + + + name + Preprocessor directives & includes + scope + meta.preprocessor, keyword.control.import, keyword.control.directive, keyword.control.include, entity.name.function.preprocessor, punctuation.definition.preprocessor + settings + + foreground + #5E81AC + + + name