| Name | Type | Description | Notes |
|---|---|---|---|
| dark | str | [optional] | |
| light | str | [optional] |
from hyperstack.models.primary_color import PrimaryColor
# TODO update the JSON string below
json = "{}"
# create an instance of PrimaryColor from a JSON string
primary_color_instance = PrimaryColor.from_json(json)
# print the JSON string representation of the object
print(PrimaryColor.to_json())
# convert the object into a dict
primary_color_dict = primary_color_instance.to_dict()
# create an instance of PrimaryColor from a dict
primary_color_from_dict = PrimaryColor.from_dict(primary_color_dict)