New icon/ color
This commit is contained in:
parent
f0a8b1fb6c
commit
f0f7378bda
5 changed files with 7 additions and 6 deletions
BIN
src/assets/img/icon128.png
Normal file
BIN
src/assets/img/icon128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8 KiB |
BIN
src/assets/img/icon32.png
Normal file
BIN
src/assets/img/icon32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
|
|
@ -7,9 +7,9 @@
|
||||||
"background": { "service_worker": "background.bundle.js" },
|
"background": { "service_worker": "background.bundle.js" },
|
||||||
"action": {
|
"action": {
|
||||||
"default_popup": "popup.html",
|
"default_popup": "popup.html",
|
||||||
"default_icon": "icon-32.png"
|
"default_icon": "icon32.png"
|
||||||
},
|
},
|
||||||
"icons": {
|
"icons": {
|
||||||
"128": "icon-128.png"
|
"128": "icon128.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ export const theme: Theme = {
|
||||||
colors: {
|
colors: {
|
||||||
text: '#333333',
|
text: '#333333',
|
||||||
background: '#FDFDFD',
|
background: '#FDFDFD',
|
||||||
primary: '#a55eea',
|
primary: '#B77EEE',
|
||||||
primaryDark: '#9454d2',
|
primaryDark: '#a55eea',
|
||||||
red: '#fc5c65',
|
red: '#fc5c65',
|
||||||
redDark: '#e2525a',
|
redDark: '#e2525a',
|
||||||
green: '#26de81',
|
green: '#26de81',
|
||||||
|
|
@ -49,6 +49,7 @@ export const theme: Theme = {
|
||||||
},
|
},
|
||||||
buttons: {
|
buttons: {
|
||||||
primary: {
|
primary: {
|
||||||
|
borderRadius: 0,
|
||||||
color: 'background',
|
color: 'background',
|
||||||
bg: 'primary',
|
bg: 'primary',
|
||||||
py: '3px',
|
py: '3px',
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ var options = {
|
||||||
new CopyWebpackPlugin({
|
new CopyWebpackPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
{
|
{
|
||||||
from: 'src/assets/img/icon-128.png',
|
from: 'src/assets/img/icon128.png',
|
||||||
to: path.join(__dirname, 'build'),
|
to: path.join(__dirname, 'build'),
|
||||||
force: true,
|
force: true,
|
||||||
},
|
},
|
||||||
|
|
@ -140,7 +140,7 @@ var options = {
|
||||||
new CopyWebpackPlugin({
|
new CopyWebpackPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
{
|
{
|
||||||
from: 'src/assets/img/icon-32.png',
|
from: 'src/assets/img/icon32.png',
|
||||||
to: path.join(__dirname, 'build'),
|
to: path.join(__dirname, 'build'),
|
||||||
force: true,
|
force: true,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue