标签: python kivy kivy-language
我正在使用kivy rst文档,我需要更改段落的颜色,在文档中,有一个可用选项-“ colors”是字典属性。
但是当所有其他与颜色相关的功能都在list属性中时,如何在字典属性中将段落的颜色更改为白色。
self.rst = RstDocument(text=self.document, colors={}, background_color=[0,0,0,1],)
而且,当我频繁更新self.document时,如何自动缩小RstDocument()
谢谢