Graphics3D[
Cuboid /@ Complement[Tuples[{1, 2, 3}, 3], {{1, 2, 3}, {3, 1, 3}}],
ViewPoint -> {45.42, -83.46, 31.83}, Boxed -> False]
Above code generates following 3D graphic :

Then I want to generate following 3D graphic :
A graphic with white face, and black edge in any view.
Any view means in any view related settings like ViewPoint, ViewVertical, and rotation state.
After that, I want an enhanced version of following 3D graphic :
See the edges in the back look a bit blurry and dirty.
That's why I want its enhanced version - not blurry, not dirty.
Finally I want to give just a little lighting(black and white lighting) to above 3D graphics.
This is necessary because without any lighting, some 3D graphics can be a little confusing.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
After getting a comment from Vitaliy Kaurov :
Thank you, but the result is
in Mathematica V 13 in my PC.
The graphic has some gray faces. It is not all white.
I want to generate graphics with all white faces in any view.
After getting more comment :
The problem was solved.












Lighting. $\endgroup$Graphics3D[{FaceForm[Opacity[.5]], Cuboid /@ Complement[Tuples[{1, 2, 3}, 3], {{1, 2, 3}, {3, 1, 3}}]}, ViewPoint -> {45.42, -83.46, 31.83}, Boxed -> False, Lighting -> {{"Ambient", White}}]$\endgroup$