RStheme: Editor text changes brightness after activating editor window pane.

Hi. I use a dark theme that is slightly adjusted from the 'vibrant_ink' theme. Over the past 6 months or so, I started noticing that the text changes brightness when clicking within the text of a script. It is especially noticeable with the comments colour of my theme and for larger scripts where you can scroll down quite a bit. If you want to see what I mean, use the below theme that I use (it is also slightly visible with just the already installed vibrant-ink), type a line of comments, copy the lines below each other (alt+shift+down arrow) for a 100 lines or so, click on the first line, scroll down, click on the last line. The moment you scroll down you should notice a difference in brightness of the text and when you click on the last line the brightness changes again. It's not too much of a bother, just wondering if there is any option to turn it off.

Windows 10 version 1909 build 18363.1016
R- 3.6.2
Rstudio- 1.3.1073

/* rs-theme-name: adjuste_vibrantink */
/* rs-theme-is-dark: TRUE */
.ace_gutter {
  background: #1a1a1a;
  color: #BEBEBE
}
.ace_print-margin {
  width: 1px;
  background: #444;
}
.ace_editor, .rstudio-themes-flat.ace_editor_theme .profvis-flamegraph, .rstudio-themes-flat.ace_editor_theme, .rstudio-themes-flat .ace_editor_theme {
  background-color: #0F0F0F;
  color: #FFFFFF
}
.ace_cursor {
  color: #FFFFFF
}
.ace_marker-layer .ace_selection {
  background: #6699CC
}
.ace_selection.ace_start {
  box-shadow: 0 0 3px 0px #0F0F0F;
  border-radius: 2px
}
.ace_marker-layer .ace_step {
  background: rgb(102, 82, 0)
}
.ace_marker-layer .ace_bracket {
  margin: -1px 0 0 -1px;
  border: 1px solid #404040
}
.ace_marker-layer .ace_active-line {
  background: #333333
}
.ace_gutter-active-line {
  background-color: #333333
}
.ace_marker-layer .ace_selected-word {
  border: 1px solid #6699CC
}
.ace_invisible {
  color: #404040
}
.ace_keyword,
.ace_meta {
  color: #0478FA
}
.ace_constant,
.ace_constant.ace_character,
.ace_constant.ace_character.ace_escape,
.ace_constant.ace_other {
  color: #339999
}
.ace_constant.ace_numeric {
  color: #99CC99
}
.ace_invalid,
.ace_invalid.ace_deprecated {
  color: #CCFF33;
  background-color: #000000
}
.ace_fold {
  background-color: #FFCC00;
  border-color: #FFFFFF
}
.ace_entity.ace_name.ace_function,
.ace_support.ace_function,
.ace_variable {
  color: #FFCC00
}
.ace_variable.ace_parameter {
  font-style: italic
}
.ace_string {
  color: #1FE207
}
.ace_string.ace_regexp {
  color: #44B4CC
}
.ace_comment {
  color: #C808FA
}
.ace_entity.ace_other.ace_attribute-name {
  font-style: italic;
  color: #99CC99
}
.ace_indent-guide {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYNDTc/oPAALPAZ7hxlbYAAAAAElFTkSuQmCC) right repeat-y
}
.nocolor.ace_editor .ace_line span {
  color: #ff6600 !important;
}
.ace_bracket {
  margin: 0 !important;
  border: 0 !important;
  background-color: rgba(128, 128, 128, 0.5);
}
.ace_marker-layer .ace_foreign_line {
  position: absolute;
  z-index: -1;
  background-color: #262626;
}
.ace_marker-layer .ace_active_debug_line {
  position: absolute;
  z-index: -1;
  background-color: #877623;
}
.ace_marker-layer .ace_find_line {
  position: absolute;
  z-index: -1;
  background-color: #3E3E3E;
}
.ace_console_error {
  background-color: #3E3E3E;
}
.ace_keyword.ace_operator {
  color: #F98605 !important;
}
.terminal {
  background-color: #0F0F0F;
  color: #ffffff;
  font-feature-settings: "liga" 0;
  position: relative;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.terminal.xterm-cursor-style-block.focus:not(.xterm-cursor-blink-on) .terminal-cursor {
  background-color: #CCC;
  color: #1e1e1e;
}
.terminal.focus.xterm-cursor-style-bar:not(.xterm-cursor-blink-on) .terminal-cursor::before,
.terminal.focus.xterm-cursor-style-underline:not(.xterm-cursor-blink-on) .terminal-cursor::before {
  content: '';
  position: absolute;
  background-color: #CCC;
}
.terminal:not(.focus) .terminal-cursor {
  outline: 1px solid #CCC;
  outline-offset: -1px;
}
.terminal .xterm-selection div {
   position: absolute;
   background-color: #CCC;
}
.terminal .xterm-viewport {
  background-color: #0F0F0F;
  overflow-y: scroll;
}

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.