0
0
SolidworksHow-ToBeginner · 3 min read

How to Change Color of Object in AutoCAD Quickly

To change the color of an object in AutoCAD, select the object and then use the Properties panel to pick a new color from the Color dropdown. Alternatively, use the CHPROP command, select the object, and specify the new color by typing its name or number.
📐

Syntax

There are two main ways to change an object's color in AutoCAD:

  • Using Properties Panel: Select the object, then open the Properties panel and change the Color property.
  • Using Command Line: Type CHPROP (Change Properties), select the object(s), then type C for color, and enter the desired color name or number.
plaintext
CHPROP
Select objects: (select your object)
Enter property to change [Color/Layer/Linetype/Lineweight/Transparency]: C
Enter new value for Color <ByLayer>: Red
Output
Object color changed to Red
💻

Example

This example shows how to change a selected object's color to blue using the command line:

plaintext
CHPROP
Select objects: (click on the object)
Enter property to change [Color/Layer/Linetype/Lineweight/Transparency]: C
Enter new value for Color <ByLayer>: Blue
Output
Object color changed to Blue
⚠️

Common Pitfalls

  • Not selecting the object before changing color will cause no change.
  • Typing an invalid color name or number will result in an error.
  • Objects set to ByLayer color will inherit the layer color, so changing object color may not show effect unless changed from ByLayer.
plaintext
Wrong way:
CHPROP
Select objects: (select object)
Enter property to change [Color/Layer/Linetype/Lineweight/Transparency]: C
Enter new value for Color <ByLayer>: InvalidColorName

Right way:
CHPROP
Select objects: (select object)
Enter property to change [Color/Layer/Linetype/Lineweight/Transparency]: C
Enter new value for Color <ByLayer>: Green
Output
Error: Invalid color name Object color changed to Green
📊

Quick Reference

ActionCommand/StepDescription
Open Properties PanelSelect object > PropertiesChange color from dropdown
Change color via commandCHPROP > Select object > C > Color name/numberChange object color directly
Reset to layer colorSet color to ByLayerObject inherits layer color
Valid colorsRed, Blue, Green, Yellow, etc.Use standard AutoCAD color names or numbers

Key Takeaways

Select the object before changing its color to ensure the change applies.
Use the Properties panel or CHPROP command to change object color easily.
Avoid invalid color names to prevent errors during color change.
Objects set to ByLayer color inherit the layer's color, so change accordingly.
Use standard color names or numbers recognized by AutoCAD for best results.