Explorar el Código

a good color for open/close bracket indicator is the cursor color

one
Garrick Aden-Buie hace 7 años
padre
commit
2ccb0ed6ac
Se han modificado 4 ficheros con 18 adiciones y 18 borrados
  1. +1
    -1
      nord-snow-storm.scss
  2. +7
    -7
      rsthemes/nord-snow-storm.rstheme
  3. +7
    -7
      rsthemes/solarized-light.rstheme
  4. +3
    -3
      solarized-light.scss

+ 1
- 1
nord-snow-storm.scss Ver fichero

$ui-line-active-gutter : $ui-background; $ui-line-active-gutter : $ui-background;
$ui-line-active-selection : opacify($ui-selection, 1); $ui-line-active-selection : opacify($ui-selection, 1);
$ui-line-find : $ui-selection; $ui-line-find : $ui-selection;
$ui-bracket : darken($ui-background, 20%);
$ui-bracket : transparentize($ui-cursor, 0.6);
$ui-invisible : $nord4; $ui-invisible : $nord4;
$ui-indent-guide : $nord4; $ui-indent-guide : $nord4;
$ui-debug-background : lighten($ui-background, 10%); $ui-debug-background : lighten($ui-background, 10%);

+ 7
- 7
rsthemes/nord-snow-storm.rstheme Ver fichero



.ace_marker-layer .ace_bracket { .ace_marker-layer .ace_bracket {
margin: -1px 0 0 -1px; margin: -1px 0 0 -1px;
border: 1px solid #cccccc;
border: 1px solid rgba(208, 135, 112, 0.4);
} }


.ace_marker-layer .ace_active-line { .ace_marker-layer .ace_active-line {
.ace_bracket { .ace_bracket {
margin: 0 !important; margin: 0 !important;
border: 0 !important; border: 0 !important;
background-color: #cccccc;
background-color: rgba(208, 135, 112, 0.4);
} }


.ace_console_error { .ace_console_error {
/* ---- RStudio Theme ---- */ /* ---- RStudio Theme ---- */
/* background */ /* background */
.rstudio-themes-flat .rstudio-themes-default { .rstudio-themes-flat .rstudio-themes-default {
background: #fafafa !important;
background: #f9fafb !important;
color: #4c566a !important; color: #4c566a !important;
} }


.rstudio-themes-flat .rstudio-themes-default .rstudio-themes-background { .rstudio-themes-flat .rstudio-themes-default .rstudio-themes-background {
background: #fafafa !important;
background: #f9fafb !important;
} }


/* inactive tabs */ /* inactive tabs */
} }


.rstudio-themes-flat .themedPopupPanel { .rstudio-themes-flat .themedPopupPanel {
border: solid 1px #cccccc;
border: solid 1px rgba(208, 135, 112, 0.4);
} }


.rstudio-themes-flat .themedPopupPanel ~ div.popupContent div:nth-child(1) { .rstudio-themes-flat .themedPopupPanel ~ div.popupContent div:nth-child(1) {
border: solid 1px #cccccc;
border: solid 1px rgba(208, 135, 112, 0.4);
} }


.rstudio-themes-flat .popupContent { .rstudio-themes-flat .popupContent {


.rstudio-themes-flat .popupContent:not(.popupMiddleCenterInner) div div:nth-child(2) { .rstudio-themes-flat .popupContent:not(.popupMiddleCenterInner) div div:nth-child(2) {
background: white !important; background: white !important;
border: solid 1px #cccccc;
border: solid 1px rgba(208, 135, 112, 0.4);
} }


.rstudio-themes-flat .gwt-PopupPanel .popupContent { .rstudio-themes-flat .gwt-PopupPanel .popupContent {

+ 7
- 7
rsthemes/solarized-light.rstheme Ver fichero



.ace_marker-layer .ace_bracket { .ace_marker-layer .ace_bracket {
margin: -1px 0 0 -1px; margin: -1px 0 0 -1px;
border: 1px solid #839496;
border: 1px solid rgba(220, 50, 47, 0.4);
} }


.ace_marker-layer .ace_active-line { .ace_marker-layer .ace_active-line {
} }


.ace_indent-guide { .ace_indent-guide {
border-right: 1px solid #93a1a1;
border-right: 1px solid #eee8d5;
} }


.ace_active-line ~ .ace_selection.ace_start { .ace_active-line ~ .ace_selection.ace_start {
} }


.ace_invisible { .ace_invisible {
color: #839496;
color: #eee8d5;
} }


.ace_variable { .ace_variable {
.ace_bracket { .ace_bracket {
margin: 0 !important; margin: 0 !important;
border: 0 !important; border: 0 !important;
background-color: #839496;
background-color: rgba(220, 50, 47, 0.4);
} }


.ace_console_error { .ace_console_error {
} }


.rstudio-themes-flat .themedPopupPanel { .rstudio-themes-flat .themedPopupPanel {
border: solid 1px #839496;
border: solid 1px rgba(220, 50, 47, 0.4);
} }


.rstudio-themes-flat .themedPopupPanel ~ div.popupContent div:nth-child(1) { .rstudio-themes-flat .themedPopupPanel ~ div.popupContent div:nth-child(1) {
border: solid 1px #839496;
border: solid 1px rgba(220, 50, 47, 0.4);
} }


.rstudio-themes-flat .popupContent { .rstudio-themes-flat .popupContent {


.rstudio-themes-flat .popupContent:not(.popupMiddleCenterInner) div div:nth-child(2) { .rstudio-themes-flat .popupContent:not(.popupMiddleCenterInner) div div:nth-child(2) {
background: #fdf6e3 !important; background: #fdf6e3 !important;
border: solid 1px #839496;
border: solid 1px rgba(220, 50, 47, 0.4);
} }


.rstudio-themes-flat .gwt-PopupPanel .popupContent { .rstudio-themes-flat .gwt-PopupPanel .popupContent {

+ 3
- 3
solarized-light.scss Ver fichero

$ui-line-active-gutter : $ui-gutter-color; $ui-line-active-gutter : $ui-gutter-color;
$ui-line-active-selection : $base1; $ui-line-active-selection : $base1;
$ui-line-find : $base00; $ui-line-find : $base00;
$ui-bracket : $base0;
$ui-invisible : $base0;
$ui-indent-guide : $base1;
$ui-bracket : transparentize($ui-cursor, 0.6);
$ui-invisible : $base2;
$ui-indent-guide : $base2;
$ui-debug-background : lighten($ui-background, 10%); $ui-debug-background : lighten($ui-background, 10%);
$ui-fold-arrows-background: $violet; $ui-fold-arrows-background: $violet;
$ui-fold-arrows-color : $ui-foreground; $ui-fold-arrows-color : $ui-foreground;

Cargando…
Cancelar
Guardar