search_inks_by_color
Match fountain pen inks to a specific color by inputting a hex code. Returns a list of inks with similar RGB values, customizable by the number of results.
Instructions
Find inks similar to a given color using RGB matching
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | Hex color code (e.g., "#FF5733") | |
max_results | No | Maximum number of results to return (default: 20) |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Hex color code (e.g., \"#FF5733\")",
"type": "string"
},
"max_results": {
"default": 20,
"description": "Maximum number of results to return (default: 20)",
"type": "number"
}
},
"required": [
"color"
],
"type": "object"
}