コード例 #1
0
 public TextStyle defaultTextStyle() {
   TextStyle textStyle = new TextStyle();
   textStyle.setBackgroundColor(new RGB(255, 255, 255));
   textStyle.setColor(new RGB(0, 0, 0));
   return textStyle;
 }
コード例 #2
0
 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;
 }