Label divider2 = new Label("<hr>", ContentMode.HTML);
layoutLeft.addComponent(divider2);
HorizontalLayout layout4 = createHorizontalLayout();
addShadeButton(new Color(Integer.parseInt("000000", 16)), layout4);
addShadeButton(new Color(Integer.parseInt("333333", 16)), layout4);
addShadeButton(new Color(Integer.parseInt("666666", 16)), layout4);
addShadeButton(new Color(Integer.parseInt("999999", 16)), layout4);
addShadeButton(new Color(Integer.parseInt("cccccc", 16)), layout4);
addShadeButton(new Color(Integer.parseInt("ffffff", 16)), layout4);
Panel panel4 = new Panel(
"Button-like colorpickers with disabled caption (no effect on fg/bg colors)",
layout4);
layoutLeft.addComponent(panel4);
HorizontalLayout layout5 = createHorizontalLayout();
addShadeArea(new Color(Integer.parseInt("000000", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("111111", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("222222", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("333333", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("444444", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("555555", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("666666", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("777777", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("888888", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("999999", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("aaaaaa", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("bbbbbb", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("cccccc", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("dddddd", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("eeeeee", 16)), layout5);
addShadeArea(new Color(Integer.parseInt("ffffff", 16)), layout5);
Panel panel5 = new Panel(
"Area colorpickers with no given caption (no effect on fg/bg colors)",
layout5);
layoutLeft.addComponent(panel5);