Merge branch 'firefox_remove_border' of https://github.com/andreicristianpetcu/themer into andreicristianpetcu-firefox_remove_border

This commit is contained in:
Matt Swensen 2020-04-28 06:32:40 -06:00
commit b66a8353ed
No known key found for this signature in database
GPG Key ID: 3F9E482BFC526F35
2 changed files with 11 additions and 7 deletions

@ -10,6 +10,8 @@ To package the code in preparation for submission, the \`web-ext\` tool can be u
Then the package can be submitted to Mozilla for review in the [Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution).
Learn more about Firefox themes from [extensionworkshop.com](https://extensionworkshop.com/documentation/themes/)
To theme Firefox without the need to create a developer account and go through the extension review process, see themer's integration with [Firefox Color](https://color.firefox.com).
"
`;
@ -151,9 +153,9 @@ Object {
102,
],
"toolbar_field_separator": Array [
40,
38,
41,
71,
66,
71,
],
"toolbar_field_text": Array [
255,
@ -307,9 +309,9 @@ Object {
194,
],
"toolbar_field_separator": Array [
224,
220,
224,
255,
252,
255,
],
"toolbar_field_text": Array [
40,

@ -46,7 +46,7 @@ const renderManifest = (colorSet) => {
tab_text: colorSet.rgbColors.shade7,
toolbar_bottom_separator: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
toolbar_field_border: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
toolbar_field_separator: colorSet.isDark ? colorSet.rgbColors.shade0 : colorSet.rgbColors.shade1,
toolbar_field_separator: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
toolbar_field_text_focus: colorSet.rgbColors.shade7,
toolbar_field_text: colorSet.rgbColors.shade7,
toolbar_field: colorSet.isDark ? colorSet.rgbColors.shade1 : colorSet.rgbColors.shade0,
@ -84,6 +84,8 @@ To package the code in preparation for submission, the \`web-ext\` tool can be u
Then the package can be submitted to Mozilla for review in the [Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution).
Learn more about Firefox themes from [extensionworkshop.com](https://extensionworkshop.com/documentation/themes/)
To theme Firefox without the need to create a developer account and go through the extension review process, see themer's integration with [Firefox Color](https://color.firefox.com).
`;
}