ticktick_set_project_color
Update the color of a specific project in TickTick using its project ID and a hex color code to enhance visual organization and task management.
Instructions
Customize project appearance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | New color (hex code) | |
project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "New color (hex code)",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id",
"color"
],
"type": "object"
}