我已经创建了我的自定义 google chrome 主题。在我下载文件之前,一切似乎都很好。页面底部的下载部分为白色,文字为白色。只有图标可见
如何仅修改下载部分中的文本颜色(我的标签/书签中需要白色文本)或下载部分的背景。
我的清单.json:
{
"manifest_version": 2,
"version": "1.0",
"name": "My Theme",
"theme": {
"images" : {
"theme_frame" : "images/frame.png",
"theme_toolbar" : "images/toolbar.png",
"theme_ntp_background" : "images/background.png",
"theme_tab_background" : "images/tab.png"
},
"colors" : {
"ntp_link": [255,255,255],
"ntp_text": [255,255,255],
"ntp_section_link": [255,255,255],
"ntp_section_text": [255,255,255],
"ntp_background": [255,255,255],
"frame": [255,255,255],
"toolbar": [255,255,255],
"tab_text": [255,255,255],
"tab_background_text": [255,255,255],
"bookmark_text": [255,255,255]
},
"tints" : {
"buttons" : [1,1,1]
},
"properties" : {
"ntp_background_alignment" : "bottom",
"ntp_background_repeat": "repeat"
}
}
}