From 9cf3871e5e099ed35f760cac1ffee8963c8c670a Mon Sep 17 00:00:00 2001 From: sellth Date: Wed, 3 Nov 2021 12:45:57 +0100 Subject: [PATCH 01/10] change color of message/warning/error to red --- dracula.rstheme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dracula.rstheme b/dracula.rstheme index 51fb41c..0615c7e 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -120,7 +120,7 @@ } .ace_constant.ace_language { - color: #BD93F9; + color: #ff5555; } .ace_constant.ace_numeric { @@ -3084,4 +3084,4 @@ input#rstudio_command_palette_search { .rstudio-themes-flat.editor_dark .ace_editor_theme .GCHYANPCGI { color: #f8f8f2; -} \ No newline at end of file +} From 24f27b8f1f9790ffd311bcdaca40e95c6d5a3a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Martins?= <34938828+MarcioFCMartins@users.noreply.github.com> Date: Sat, 12 Mar 2022 09:04:51 +0000 Subject: [PATCH 02/10] Fix new project window When creating a new project, the background color of the window was white which made the text for several options unreadable --- dracula.rstheme | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dracula.rstheme b/dracula.rstheme index 0615c7e..f486acf 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -3003,6 +3003,10 @@ input#rstudio_command_palette_search { word-wrap: break-word; } +.GONVA-ECI3 { + background: #252631; +} + /*Import Excel data import options*/ .GCHYANPCNTD { border: 1px solid #252631; From 8dfb9fbd4bb85453267ee123a5d1f073d88238bd Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Sat, 12 Mar 2022 17:33:13 +0000 Subject: [PATCH 03/10] Fixed text selection color to make it more visible --- dracula.rstheme | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dracula.rstheme b/dracula.rstheme index f486acf..878d7ab 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -48,7 +48,7 @@ } .ace_marker-layer .ace_selection { - background: #464B5D80; + background: #66698780; } .ace_marker-layer .ace_step { @@ -65,7 +65,7 @@ } .ace_marker-layer .ace_selected-word { - border: 1px solid #464B5D80; + background-color: ##66698780; } .ace_marker-layer .ace_foreign_line { @@ -101,7 +101,7 @@ } .ace_active-line ~ .ace_selection.ace_start { - background-color: #21222c; + background-color: ##666987; } .ace_keyword { From 580697414f5362ab9ff283cecf42c811224ecee6 Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Tue, 15 Mar 2022 19:15:34 +0000 Subject: [PATCH 04/10] Change background color of modified keyboard shortcuts to make them readable. --- dracula.rstheme | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dracula.rstheme b/dracula.rstheme index 878d7ab..d8fbfa8 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -3007,6 +3007,10 @@ input#rstudio_command_palette_search { background: #252631; } +.GONVA-ECPX{ + background-color: #6272a4 !important; + } + /*Import Excel data import options*/ .GCHYANPCNTD { border: 1px solid #252631; From 954aaba39ac892574aa134756b6a0a7bc3a49bee Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Fri, 1 Apr 2022 15:46:55 +0100 Subject: [PATCH 05/10] Fix keyboard shortcut color --- dracula.rstheme | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dracula.rstheme b/dracula.rstheme index d8fbfa8..6ee92be 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -3011,6 +3011,10 @@ input#rstudio_command_palette_search { background-color: #6272a4 !important; } +.GONVA-ECK-{ + background-color: #6272a4 !important; + } + /*Import Excel data import options*/ .GCHYANPCNTD { border: 1px solid #252631; From a8f446fb054504aaf156ebe537649f0d40666048 Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Fri, 1 Apr 2022 16:03:32 +0100 Subject: [PATCH 06/10] Fix background color in excel data import window --- dracula.rstheme | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/dracula.rstheme b/dracula.rstheme index 6ee92be..a93bb84 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -3003,17 +3003,28 @@ input#rstudio_command_palette_search { word-wrap: break-word; } +/* New project window */ .GONVA-ECI3 { background: #252631; } +/* Modified keyboard shortcuts colors */ .GONVA-ECPX{ background-color: #6272a4 !important; - } +} .GONVA-ECK-{ background-color: #6272a4 !important; - } +} + + /* Update packages window */ +.GONVA-ECMHC{ + background-color: #252631; +} + +.GONVA-ECMGC{ + background-color: #252631; +} /*Import Excel data import options*/ .GCHYANPCNTD { @@ -3037,6 +3048,10 @@ input#rstudio_command_palette_search { margin-left: 5px; } +.GONVA-ECFWD{ + background-color: #252631 +} + .gwt-DialogBox .dialogMiddleCenter, .GCHYANPCOR .popupMiddleCenter { background: #252631; } From 02a13f47b35e7c36b9efda9b223964fa182e8641 Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Fri, 1 Apr 2022 17:51:23 +0100 Subject: [PATCH 07/10] Fix the "Update packages" window background colors --- dracula.rstheme | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dracula.rstheme b/dracula.rstheme index a93bb84..ca1ea32 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -3020,10 +3020,21 @@ input#rstudio_command_palette_search { /* Update packages window */ .GONVA-ECMHC{ background-color: #252631; + border: none; } .GONVA-ECMGC{ background-color: #252631; + border: none; +} + +.GONVA-ECKGC{ + background-color: #252631; + border: none; +} + +.GONVA-ECNGC{ + border: none; } /*Import Excel data import options*/ From 06eaf25f22eee157d5100afc002f542a45c3c679 Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Sun, 17 Apr 2022 15:28:01 +0100 Subject: [PATCH 08/10] Update several class names to match latest Rstudio version (2022.02.1) --- dracula.rstheme | 99 ++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 78 insertions(+), 21 deletions(-) diff --git a/dracula.rstheme b/dracula.rstheme index ca1ea32..22bae7b 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -1,5 +1,6 @@ /* rs-theme-name: Dracula */ /* rs-theme-is-dark: TRUE */ + .ace_gutter { background: #282A36; color: #4b5578; @@ -3003,42 +3004,67 @@ input#rstudio_command_palette_search { word-wrap: break-word; } + /* New project window */ -.GONVA-ECI3 { - background: #252631; +.GEL-OVUBL2{ + background: #252631; } -/* Modified keyboard shortcuts colors */ -.GONVA-ECPX{ - background-color: #6272a4 !important; +/* Keyboard shortcuts menu */ + /* Warning rows - e.g. confliting keyboard shortcuts */ +.GEL-OVUBFX{ + background-color: #ff5555; } -.GONVA-ECK-{ - background-color: #6272a4 !important; + /* Modified keyboard shortcut */ +.GEL-OVUBGX{ + background-color: #6272a4 !important; } - - /* Update packages window */ -.GONVA-ECMHC{ - background-color: #252631; - border: none; + +.GEL-OVUBB-{ + background-color: #6272a4 !important; } -.GONVA-ECMGC{ - background-color: #252631; +/* Pacakage updater */ + + /* Alternating light/dark rows in package updater */ +.GEL-OVUBIX{ + background-color: #252631; border: none; } -.GONVA-ECKGC{ - background-color: #252631; - border: none; +.GEL-OVUBDHC{ + background-color: #252631 !important; + border: none; +} + +.GEL-OVUBHY{ + background-color: #282a36; + border: none; } -.GONVA-ECNGC{ +.GEL-OVUBDIC{ + background-color: #282a36; border: none; } + /* Removing white borders from package updater */ +.GEL-OVUBEHC{ + border: none; +} + +.GEL-OVUBEIC{ + border: none; +} + + /* Background color in package updates */ +.GEL-OVUBBHC{ + background: #252631; +} + + /*Import Excel data import options*/ -.GCHYANPCNTD { +.GEL-OVUBOVD { border: 1px solid #252631; background-color: #252631; padding-top: 12px; @@ -3077,8 +3103,10 @@ input#rstudio_command_palette_search { margin-left: 5px; } + + /*Import text data import options*/ -.GCHYANPCASD { +.GEL-OVUBBUD { display: -ms-flexbox; display: -webkit-flex; display: flex; @@ -3098,8 +3126,37 @@ input#rstudio_command_palette_search { margin-left: 5px; } +.GEL-OVUBB4B{ + background-color: #252631; +} + +.GEL-OVUBG4B{ + background-color: #252631; +} + /*Import statistical data import options*/ -.GCHYANPCPSD { +.GEL-OVUBBUD { + border: 1px solid #999; + background-color: #252631; + padding-top: 12px; + padding-left: 16px; + padding-bottom: 3px; + padding-right: 6px; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-grow: 1; + -webkit-flex-grow: 1; + flex-grow: 1; + margin-top: 3px; + margin-right: 5px; + margin-left: 5px; +} + +.GEL-OVUBAVD { border: 1px solid #999; background-color: #252631; padding-top: 12px; From c318430b0133ceb66ca2ad290e4b09c411402971 Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Fri, 6 May 2022 08:44:30 +0100 Subject: [PATCH 09/10] Fix inline r code chunk pop-ups in Rmarkdown files --- dracula.rstheme | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dracula.rstheme b/dracula.rstheme index 22bae7b..99c677d 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -377,6 +377,11 @@ table.rstheme_tabLayoutCenter .gwt-Label, border-color: #252631; } +/* Inline Rmarkdown popup */ +.GEL-OVUBBRC { + color: #f8f8f2 !important; +} + .rstudio-themes-flat .popupContent:not(.popupMiddleCenterInner) div div:nth-child(2) { background-color: unset; border: none; @@ -3006,7 +3011,7 @@ input#rstudio_command_palette_search { /* New project window */ -.GEL-OVUBL2{ +.GEL-OVUBL2 { background: #252631; } From bea893a90f97565a45cff5f73070e6cc42057337 Mon Sep 17 00:00:00 2001 From: MarcioFCMartins Date: Sun, 8 May 2022 14:33:39 +0100 Subject: [PATCH 10/10] Fix window warning of unsaved changes --- dracula.rstheme | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/dracula.rstheme b/dracula.rstheme index 99c677d..768486f 100644 --- a/dracula.rstheme +++ b/dracula.rstheme @@ -3054,19 +3054,38 @@ input#rstudio_command_palette_search { } /* Removing white borders from package updater */ -.GEL-OVUBEHC{ +.GEL-OVUBEHC { border: none; } -.GEL-OVUBEIC{ +.GEL-OVUBEIC { border: none; } /* Background color in package updates */ -.GEL-OVUBBHC{ +.GEL-OVUBBHC { background: #252631; } +/* Quit R - Unsaved files warning window */ + +.GEL-OVUBFUB { + background-color: #252631 !important; + border: none; +} + +.GEL-OVUBFVB { + background-color: #282a36; + border: none; +} + +.GEL-OVUBAWB { + background-color: #252631; +} + +.GEL-OVUBGUB, .GEL-OVUBNUB, .GEL-OVUBIVB, .GEL-OVUBAVB, .GEL-OVUBOUB { + border: none; +} /*Import Excel data import options*/ .GEL-OVUBOVD {