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
-
4You can change all the colors in the user preferences. Go to the file menu, then user preferences. In the "themes" tab, you'll find several presets and a way to customize each part of the UI – lemon Feb 25 '17 at 15:45
-
You may want to update the selected answer, pointing to the one applicable to recent versions. – mins Apr 18 '22 at 10:05
4 Answers
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.
You can also change the color of the wire by using Wire and Wire Edit in the same menu.
- 568
- 5
- 15
- 250
- 3
- 9
-
1In 2.8, its Edit -> Preferences -> Themes -> 3D viewport -> Theme space -> Gradient colors. – Anders Lindén Jul 27 '20 at 16:08
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.
- 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
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.
- 81
- 1
- 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
- 479
- 4
- 18
-
1for 2.8 it would be.. bpy.context.preferences.themes[0].view_3d.space.gradients.high_gradient = new_color – sreenivas Mar 24 '19 at 17:14
-



