public TextStyle defaultTextStyle() { TextStyle textStyle = new TextStyle(); textStyle.setBackgroundColor(new RGB(255, 255, 255)); textStyle.setColor(new RGB(0, 0, 0)); return textStyle; }
public TextStyle specialSpaceTextStyle() { TextStyle textStyle = defaultTextStyle().copy(); // Affects what is behind the text and WS textStyle.setBackgroundColor(new RGB(255, 204, 102)); // light orange return textStyle; }