update_model_styling
Modify CSS styling for a specific model in Anki MCP by specifying the model name and new CSS code, ensuring visual updates are applied consistently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
css | Yes | New CSS styling for the model | |
modelName | Yes | Name of the model |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"css": {
"description": "New CSS styling for the model",
"type": "string"
},
"modelName": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"modelName",
"css"
],
"type": "object"
}