Issue
It's clear that the selection is for readability, but it seems too glaring to me.
How can I edit the configuration and change the transparency or the color of the selected area (blue) or invert the selection to the bracket, or completely remove it? In css syntax I do not understand at all.
Solution
The CSS selector for matching brackets is div.CodeMirror span.CodeMirror-matchingbracket
So, you can change the colour of the bracket itself and the background colour of the bracket by putting the following code into your custom.css
file (~/.jupyter/custom/custom.css
)
div.CodeMirror span.CodeMirror-matchingbracket {
color: #INSERT-YOUR-DESIRED-BRACKET-COLOUR-HERE ;
background-color: #INSERT-YOUR-DESIRED-BRACKET-BACKGROUND-COLOUR-HERE ;
}
Answered By - Louise Davies
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.