This is a read-only mirror of pymolwiki.org

Difference between revisions of "Get Color Indices"

From PyMOL Wiki
Jump to navigation Jump to search
m (trying to fix typos and adding how relates to iterate function.)
m (fixes lines)
Line 6: Line 6:
 
will retrieve the color names and corresponding  color indices.
 
will retrieve the color names and corresponding  color indices.
  
<source lang="python">print cmd.get_color_tuple(index-number)</source> will retrieve individual RGB components when `index-number` is replaced with one of the color indices from above.
+
<source lang="python">print cmd.get_color_tuple(index-number)</source>
 +
 
 +
will retrieve individual RGB components when `index-number` is replaced with one of the color indices from above.
  
 
  The color index, an integer, gets returned when color is returned while [[iterating|Iterate]]. You can thus use the  '''get_color_tuple''' command above to convert that to RGB color values if you need to use the colors outside Pymol.
 
  The color index, an integer, gets returned when color is returned while [[iterating|Iterate]]. You can thus use the  '''get_color_tuple''' command above to convert that to RGB color values if you need to use the colors outside Pymol.

Revision as of 20:59, 2 March 2016

get_color_indices in combination with get_color_tuple will retrieve the RGB values for colors.

print cmd.get_color_indices()

will retrieve the color names and corresponding color indices.

print cmd.get_color_tuple(index-number)

will retrieve individual RGB components when `index-number` is replaced with one of the color indices from above.

The color index, an integer, gets returned when color is returned while Iterate. You can thus use the  get_color_tuple command above to convert that to RGB color values if you need to use the colors outside Pymol.
set_color color-name, [r,b,g]

will create a new color that will appear in the GUI list. From the open-source GUI you can use the "add" button in the color list viewer. In MacPyMOL, enter the new name into the MacPyMOL color editor window, set the RGBs, and then click Apply.

See Also

Get_Color_Tuples Iterate