Skip to content

Commit d809f6b

Browse files
committed
RainbowDrops variations
1 parent 162155e commit d809f6b

File tree

4 files changed

+58
-3
lines changed

4 files changed

+58
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ in `BoxProviderRegistry.java` "Default", "Whitebox", "RainbowDrops", "OnClick",
4141

4242
- Default is like on image above, differs for java, markup, python, text
4343
- [Whitebox][2] - only border highlight for mouse-over
44-
- [RainbowDrops][4] - for black background themes, e.g. Moonrise, Black by Jeeeyul, Dark in Eclipse 4.4
45-
![](https://camo.githubusercontent.com/1baa2b61ed624e6cac336a675737c280d5bddb1a/687474703a2f2f7075752e73682f3742636e442f653131373166633065652e706e67)
4644
- [OnClick][3] - border highlight for mouse-over, and the current block highlight like Default when clicking inside
4745
- GreyGradient
4846
- Java_v_20
47+
- [RainbowDrops][4] - for black background themes, e.g. Moonrise, Black by Jeeeyul, Dark in Eclipse 4.4
48+
![](https://camo.githubusercontent.com/1baa2b61ed624e6cac336a675737c280d5bddb1a/687474703a2f2f7075752e73682f3742636e442f653131373166633065652e706e67)
4949

5050
Not yet released:
5151

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#Editbox Eclipse Plugin Settings
2+
#Made for the MoonRise UI Theme by @Vexatos; BorderDrawLine=true
3+
HighlightOne=true
4+
FillGradient=false
5+
FillSelected=false
6+
RoundBox=false
7+
BorderColorType=0
8+
Name=RainbowDrops
9+
ExpandBox=false
10+
BorderDrawLine=true
11+
FillOnMove=false
12+
Alpha=0
13+
HighlightWidth=1
14+
BorderWidth=1
15+
HighlightColor=00ff00
16+
BorderColor=00bbbb
17+
FillKeyModifier=Alt
18+
HighlightColorType=0
19+
FillGradientColor=null
20+
Builder=Java
21+
HighlightDrawLine=false
22+
FillSelectedColor=202020
23+
BorderLineStyle=1
24+
Colors=202020-null
25+
HighlightLineStyle=0
26+
NoBackground=false
27+
CirculateLevelColors=false
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#Editbox Eclipse Plugin Settings
2+
#Made for the MoonRise UI Theme by @Vexatos; BorderDrawLine=true; FillOnMove=true
3+
HighlightOne=true
4+
FillGradient=false
5+
FillSelected=true
6+
RoundBox=false
7+
BorderColorType=0
8+
Name=RainbowDropsLineFill
9+
ExpandBox=false
10+
BorderDrawLine=true
11+
FillOnMove=true
12+
Alpha=0
13+
HighlightWidth=1
14+
BorderWidth=1
15+
HighlightColor=00ff00
16+
BorderColor=00bbbb
17+
FillKeyModifier=
18+
HighlightColorType=0
19+
FillGradientColor=null
20+
Builder=Java
21+
HighlightDrawLine=false
22+
FillSelectedColor=000080
23+
BorderLineStyle=1
24+
Colors=202020-null
25+
HighlightLineStyle=0
26+
NoBackground=false
27+
CirculateLevelColors=false

pm.eclipse.editbox/src/pm/eclipse/editbox/impl/BoxProviderRegistry.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public class BoxProviderRegistry {
2626
private static final String PROVIDER_ID_ = "pm.eclipse.editbox.provider.";
2727
//+
2828
private static final List<String> ALL_THEMES_LIST = Arrays.asList(
29-
"Default", "Whitebox", "RainbowDrops", "OnClick", "GreyGradient", "Java_v_20",
29+
"Default", "Whitebox", "OnClick", "GreyGradient", "Java_v_20",
30+
"RainbowDrops", "RainbowDropsLine", "RainbowDropsLineFill",
3031
"BlueToDeepBlue", "OrangeToRed", "BlueGradient22WithDarkBoldLeftBorder", "BlueLight"
3132
);
3233

0 commit comments

Comments
 (0)