model_updateModelStyling
Update the CSS styling for an existing model by specifying its name and providing the new CSS string. Modify Anki flashcard appearance using the Anki-MCP server.
Instructions
Modifies the CSS styling of an existing model by name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | Yes | Model object. Must include 'name' (model name) and 'css' (the new CSS string). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"model": {
"additionalProperties": true,
"description": "Model object. Must include 'name' (model name) and 'css' (the new CSS string).",
"title": "Model",
"type": "object"
}
},
"required": [
"model"
],
"type": "object"
}