internal static void ApplyCustomizationsToRendering(BracketHighlightRenderer renderer, IEnumerable <Color> customizations)
        {
            renderer.UpdateColors(DefaultBackground, DefaultBorder);

            foreach (Color color in customizations)
            {
                //if (color.Name == BracketHighlight) {
                renderer.UpdateColors(color, color);
                //					renderer.UpdateColors(color.Background ?? Colors.Blue, color.Foreground ?? Colors.Blue);
                // 'break;' is necessary because more specific customizations come first in the list
                // (language-specific customizations are first, followed by 'all languages' customizations)
                break;
                //}
            }
        }