Skip to content

Commit b7ceed8

Browse files
committed
add BlueGradient22WithDarkBoldLeftBorder; this commit is example how to
add new theme and register it in global list.
1 parent b5cc034 commit b7ceed8

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,21 @@ Not yet released:
5353
![](pm.eclipse.editbox/docs/OrangeToRedTheme.png)
5454
- [BlueToDeepBlue][6]
5555
![](pm.eclipse.editbox/docs/BlueToDeepBlueTheme.png)
56+
- [BlueGradient22WithDarkBoldLeftBorder][7]
57+
![](pm.eclipse.editbox/docs/BlueGradient22WithDarkBoldLeftBorderTheme.png)
5658

5759
[2]: https://raw.githubusercontent.com/Nodeclipse/EditBox/master/pm.eclipse.editbox/src/Whitebox.eb
5860
[3]: https://raw.githubusercontent.com/Nodeclipse/EditBox/master/pm.eclipse.editbox/src/OnClick.eb
5961
[4]: https://raw.githubusercontent.com/Nodeclipse/EditBox/master/pm.eclipse.editbox/src/RainbowDrops.eb
6062
[5]: https://raw.githubusercontent.com/Nodeclipse/EditBox/master/pm.eclipse.editbox/src/OrangeToRed.eb
6163
[6]: https://raw.githubusercontent.com/Nodeclipse/EditBox/master/pm.eclipse.editbox/src/BlueToDeepBlue.eb
64+
[7]: https://raw.githubusercontent.com/Nodeclipse/EditBox/master/pm.eclipse.editbox/src/BlueGradient22WithDarkBoldLeftBorder.eb
6265

6366
Hints:
6467
- Before modifying or importing a theme change name
6568
- (for themes with gradient) Adjust "Alpha blending" to make theme lighter or darker.
6669

67-
Add themes like [Blue & Red](https://github.com/Nodeclipse/EditBox/commit/6dea8079a3c77a91deaee8b35cd399a007971dff)
70+
Add your themes like [Blue & Red](https://github.com/Nodeclipse/EditBox/commit/6dea8079a3c77a91deaee8b35cd399a007971dff) commit.
6871

6972
## Development
7073

124 KB
Loading
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#Editbox Eclipse Plugin Settings
2+
#Tue Apr 01 10:41:14 CST 2014 by Paul Verest
3+
HighlightOne=true
4+
FillGradient=true
5+
FillSelected=true
6+
RoundBox=false
7+
BorderColorType=3
8+
Name=BlueGradient22WithDarkBoldLeftBorder.eb
9+
ExpandBox=false
10+
BorderDrawLine=true
11+
FillOnMove=true
12+
Alpha=22
13+
HighlightWidth=1
14+
BorderWidth=3
15+
HighlightColor=000000
16+
BorderColor=00bbbb
17+
FillKeyModifier=Alt
18+
HighlightColorType=0
19+
FillGradientColor=0000a0
20+
Builder=Java
21+
HighlightDrawLine=false
22+
FillSelectedColor=80ffff
23+
BorderLineStyle=0
24+
Colors=null-d0dd9b-cdd8b9-e9f58b-null-null-null-null-null-null
25+
HighlightLineStyle=0
26+
NoBackground=false
27+
CirculateLevelColors=false

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class BoxProviderRegistry {
2727
//+
2828
private static final List<String> ALL_THEMES_LIST = Arrays.asList(
2929
"Default", "Whitebox", "RainbowDrops", "OnClick", "GreyGradient", "Java_v_20",
30-
"BlueToDeepBlue", "OrangeToRed"
30+
"BlueToDeepBlue", "OrangeToRed", "BlueGradient22WithDarkBoldLeftBorder"
3131
);
3232

3333
protected Collection<IBoxProvider> providers;

0 commit comments

Comments
 (0)