// textStyle.setColor(new RGB(20, 100, 20));
// return textStyle;
// }
private TextStyle XVRMainFuncTextStyle() {
TextStyle textStyle = new TextStyle();
textStyle.setBackgroundColor(new RGB(255, 255, 255));
textStyle.setColor(new RGB(127, 0, 85));
textStyle.setStyle(SWT.BOLD);
return textStyle;
}