Colors colors = look.colors();
float y = originY(lines);
for(TextLayout line : lines.list) {
float x = xFor(line);
y += line.getAscent() - line.getDescent();
Color shadowColor = colors.shadow();
g.setColor(shadowColor);
line.draw(g, x-1, y-1);
g.setColor(colors.text());
line.draw(g, x, y);
y += line.getDescent();