15

When I work in edit mode and wireframe I have difficulty to visualize the loops of the object. How can I change the background color of the viewport or the color of the wires? Thanks, Dov

dovk179
  • 183
  • 1
  • 1
  • 6

4 Answers4

11

You can change the background color by going to: User Preferences > Theme > 3D View > Theme Background Color > Gradient High/Off

Note: CTRL + ALT + U opens user preferences immediately.

Where

What

You can also change the color of the wire by using Wire and Wire Edit in the same menu.

qubodup
  • 568
  • 5
  • 15
Yves Bodson
  • 250
  • 3
  • 9
7

In Blender 2.8 go to Blender Prefs/Themes/3D Viewport. In the top you find the Wire Colors.

If you want to change BG-Color, go to Blender Prefs/Themes/3D Viewport and scroll down to Gradient Colors.

Wire Color

Gradient Colors

Atti
  • 263
  • 2
  • 8
  • Thanks, this should be the new selected answer. Someone may want to write a plugin for UI customization, allowing the user to select the element to change directly on the interface, instead of trying to force them to find an improbable name in the preferences. – mins Apr 18 '22 at 10:02
2

As in Blender 2.93, Atkay's answer still applies in order to change 3D viewport's background color from GUI.

To do this programmatically, sreenivas' comment to this answer works pretty well:

bpy.context.preferences.themes[0].view_3d.space.gradients.high_gradient = new_color

To define a new color, you just define its 3 component's values like (r, g, b), with values in the range [0, 1]

NOTE: Using ...themes['Default']..., as commented in a previous answer, makes Blender crash.

espidi_fen
  • 81
  • 1
  • 2
2

To change the background color in script you can do something like that:

bpy.context.user_preferences.themes[0].view_3d.space.gradients.high_gradient = new_color
Noam Peled
  • 479
  • 4
  • 18