Source code for abaqus.Session.AutoColors
[docs]class AutoColors:
"""The AutoColors object defines a color palette.
Notes
-----
This object can be accessed by:
.. code-block:: python
session.autoColors
"""
[docs] def setValues(self, colors: tuple):
"""This method changes the color palette.
Parameters
----------
colors
A sequence of Strings specifying the colors of the palette. Strings must be named colors
or represent red, green, blue components in hexadecimal form. For instance, '#FF0000'
for red, '#00FF00' for green and '#0000FF' for blue
"""
pass