Skip to content

Commit

Permalink
Add terminal colors to Oceanic Plus
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed Nov 12, 2021
1 parent 070d740 commit 470f9b5
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 32 deletions.
18 changes: 18 additions & 0 deletions inst/templates/oceanic-plus.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,24 @@ $ui_paren_4: $base08;
$ui_paren_5: $base0B;
$ui_paren_6: $base0E;

// terminal colors
$terminal_color_black: darken($ui_background, 5%);
$terminal_color_black_bright: lighten($terminal_color_black, 10%);
$terminal_color_red: $base08;
$terminal_color_red_bright: $base08;
$terminal_color_green: $base0B;
$terminal_color_green_bright: $base0B;
$terminal_color_yellow: $base09;
$terminal_color_yellow_bright: $base0A;
$terminal_color_blue: $base0D;
$terminal_color_blue_bright: $base0D;
$terminal_color_magenta: $base0E;
$terminal_color_magenta_bright: $base0E;
$terminal_color_cyan: $base0C;
$terminal_color_cyan_bright: $base0C;
$terminal_color_white: darken($ui_foreground, 5%);
$terminal_color_white_bright: lighten($terminal_color_white, 10%);

@import "rstudio/_rstudio-dark", "rstudio/_rstudio-dark-flatter";
@import "rstudio/_components";

64 changes: 32 additions & 32 deletions inst/themes/oceanic-plus.rstheme
Original file line number Diff line number Diff line change
Expand Up @@ -692,131 +692,131 @@ input#rstudio_command_palette_search {
}

.xtermColor0 {
color: #2e3436 !important;
color: #121d23 !important;
}

.xtermBgColor0 {
background-color: #2e3436;
background-color: #121d23;
}

.xtermColor1 {
color: #cc0000 !important;
color: #EC5f67 !important;
}

.xtermBgColor1 {
background-color: #cc0000;
background-color: #EC5f67;
}

.xtermColor2 {
color: #4e9a06 !important;
color: #99C794 !important;
}

.xtermBgColor2 {
background-color: #4e9a06;
background-color: #99C794;
}

.xtermColor3 {
color: #c4a000 !important;
color: #F99157 !important;
}

.xtermBgColor3 {
background-color: #c4a000;
background-color: #F99157;
}

.xtermColor4 {
color: #3465a4 !important;
color: #6699CC !important;
}

.xtermBgColor4 {
background-color: #3465a4;
background-color: #6699CC;
}

.xtermColor5 {
color: #75507b !important;
color: #C594C5 !important;
}

.xtermBgColor5 {
background-color: #75507b;
background-color: #C594C5;
}

.xtermColor6 {
color: #06989a !important;
color: #5FB3B3 !important;
}

.xtermBgColor6 {
background-color: #06989a;
background-color: #5FB3B3;
}

.xtermColor7 {
color: #d3d7cf !important;
color: #c8d0e0 !important;
}

.xtermBgColor7 {
background-color: #d3d7cf;
background-color: #c8d0e0;
}

.xtermColor8 {
color: #555753 !important;
color: #243945 !important;
}

.xtermBgColor8 {
background-color: #555753;
background-color: #243945;
}

.xtermColor9 {
color: #ef2929 !important;
color: #EC5f67 !important;
}

.xtermBgColor9 {
background-color: #ef2929;
background-color: #EC5f67;
}

.xtermColor10 {
color: #8ae234 !important;
color: #99C794 !important;
}

.xtermBgColor10 {
background-color: #8ae234;
background-color: #99C794;
}

.xtermColor11 {
color: #fce94f !important;
color: #FAC863 !important;
}

.xtermBgColor11 {
background-color: #fce94f;
background-color: #FAC863;
}

.xtermColor12 {
color: #729fcf !important;
color: #6699CC !important;
}

.xtermBgColor12 {
background-color: #729fcf;
background-color: #6699CC;
}

.xtermColor13 {
color: #ad7fa8 !important;
color: #C594C5 !important;
}

.xtermBgColor13 {
background-color: #ad7fa8;
background-color: #C594C5;
}

.xtermColor14 {
color: #34e2e2 !important;
color: #5FB3B3 !important;
}

.xtermBgColor14 {
background-color: #34e2e2;
background-color: #5FB3B3;
}

.xtermColor15 {
color: #eeeeec !important;
color: #e8ecf2 !important;
}

.xtermBgColor15 {
background-color: #eeeeec;
background-color: #e8ecf2;
}

.xtermColor16 {
Expand Down

0 comments on commit 470f9b5

Please sign in to comment.