Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

67 lines
2.4KB

  1. /* rs-theme-name: Sassy - One Dark */
  2. /* rs-theme-is-dark: TRUE */
  3. @import "palettes/_one-dark";
  4. // primary UI colors
  5. $ui-background : $syntax-bg;
  6. $ui-foreground : $syntax-fg;
  7. $ui-code-chunk-background: darken($ui-background, 2%);
  8. $ui-selection : $syntax-selection-color;
  9. $ui-cursor : $syntax-cursor-color;
  10. $ui-cursor-normal-mode : $ui-cursor;
  11. $ui-margin-line : lighten($ui-selection, 15%);
  12. $ui-gutter-color : $syntax-gutter-text-color;
  13. $ui-gutter-background : $ui-background;
  14. // less common UI colors
  15. $ui-line-active : transparentize($mono-3, 0.8);
  16. $ui-line-active-gutter : $ui-line-active;
  17. $ui-line-active-selection : transparentize($ui-selection, 0.4);
  18. $ui-line-find : $ui-selection;
  19. $ui-bracket : transparentize($ui-cursor, 0.6);
  20. $ui-invisible : transparentize($syntax-guide, 0.5);
  21. $ui-indent-guide : $ui-invisible;
  22. $ui-debug-background : darken($hue-6-2, 10%);
  23. $ui-fold-arrows-color : $syntax-color-snippet;
  24. $ui-fold-arrows-background: transparentize($ui-fold-arrows-color, 0.5);
  25. // rstudio
  26. $ui-rstudio-background : darken($ui-background, 3%);
  27. $ui-rstudio-color : $ui-foreground;
  28. $ui-rstudio-tabs-inactive : $ui-rstudio-background;
  29. $ui-rstudio-tabs-inactive-color : transparentize($ui-foreground, 0.5);
  30. $ui-rstudio-tabs-selected : $ui-background;
  31. $ui-rstudio-tabs-selected-color : $ui-foreground;
  32. $ui-completions-background : $ui-background;
  33. $ui-completions-color : $ui-foreground;
  34. $ui-completions-border : $ui-bracket;
  35. $ui-rstudio-scrollbar-background: $ui-background;
  36. $ui-rstudio-scrollbar-handle : $ui-code-chunk-background;
  37. // R language colors
  38. $rlang-comment : transparentize($ui-foreground, 0.5);
  39. $rlang-string : $syntax-color-snippet;
  40. $rlang-function : $syntax-color-function;
  41. $rlang-reserved : $syntax-color-keyword;
  42. $rlang-operator : $syntax-color-method;
  43. $rlang-bracket : $syntax-fg;
  44. $rlang-value : $syntax-color-value;
  45. $rlang-namespace: $syntax-color-import;
  46. $rlang-variable : $syntax-color-variable;
  47. $rlang-message : $syntax-color-tag;
  48. $rlang-namespace-font-style: normal;
  49. // custom css
  50. //[class="ace_keyword"] {
  51. // font-weight: bold;
  52. //}
  53. $other-tag: $syntax-color-tag;
  54. // Rmd
  55. $rmd-heading-color: $hue-5-2;
  56. $rmd-chunk-header: $hue-1;
  57. $rmd-href: $hue-6-2;
  58. @import "rstudio/_rstudio-dark", "rstudio/_terminal";