theme-darcula
theme-darcula copied to clipboard
coloring `%` in cell magics
The % symbols used in cell magics are not colored in this theme:
vs in the default dark mode:

I'm not sure if this is a missing style or more of an aesthetic choice so feel free to close
eh. I guess it would be nicer to have some contrast on the percent signs. Do you happen to know which css variable in a theme controls the percent sign color?
Well the thing is that will require changing the color of all operators:
.cm-s-jupyter span.cm-operator {
color: var(--jp-mirror-editor-operator-color);
font-weight: bold;
}
Darcula doesn't uses any operator-color by-the-way so unless you just want color for magic function call operator (unreasonable) we shouldn't color it.