So just the edges? You could draw normally and then draw wireframe on top with thicker lines:
box.draw();
ofSetLineWidth(4.0);
ofSetColor(desiredColor);
box.drawWireframe();
Else you could draw lines manually between each two vertices in your cube, that will give you greater control. Check this out for more.