1

我已经创建了我的自定义 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"

}

}

}
4

1 回答 1

1

尝试更改为"toolbar": [128,128, 128]

于 2019-11-11T20:03:39.393 回答