The custom color theme color parameters.
| Name | Type | Description | Notes |
|---|---|---|---|
| accent | str | The accent color. | [optional] |
| buttons | str | The button color. | [optional] |
from docspace_api_sdk.models.custom_color_themes_settings_color_item import CustomColorThemesSettingsColorItem
# TODO update the JSON string below
json = "{}"
# create an instance of CustomColorThemesSettingsColorItem from a JSON string
custom_color_themes_settings_color_item_instance = CustomColorThemesSettingsColorItem.from_json(json)
# print the JSON string representation of the object
print(CustomColorThemesSettingsColorItem.to_json())
# convert the object into a dict
custom_color_themes_settings_color_item_dict = custom_color_themes_settings_color_item_instance.to_dict()
# create an instance of CustomColorThemesSettingsColorItem from a dict
custom_color_themes_settings_color_item_from_dict = CustomColorThemesSettingsColorItem.from_dict(custom_color_themes_settings_color_item_dict)