## 快速颜色

可以使用mode属性来快速使用常用的颜色值

```json
{
    "body": [{
        "type": "text",
        "text": "info text",
        "mode": "info"
    }, {
        "type": "text",
        "text": "error text",
        "mode": "error"
    }, {
        "type": "text",
        "text": "success text",
        "mode": "success"
    }, {
        "type": "text",
        "text": "warning text",
        "mode": "warning"
    }, {
       "type": "text",
       "text": "warning text",
       "mode": "primary"
   }]
}
```
