diff --git a/src/assets/img/icon128.png b/src/assets/img/icon128.png new file mode 100644 index 0000000..a21131a Binary files /dev/null and b/src/assets/img/icon128.png differ diff --git a/src/assets/img/icon32.png b/src/assets/img/icon32.png new file mode 100644 index 0000000..e75c326 Binary files /dev/null and b/src/assets/img/icon32.png differ diff --git a/src/manifest.json b/src/manifest.json index e2b6017..beda167 100755 --- a/src/manifest.json +++ b/src/manifest.json @@ -7,9 +7,9 @@ "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", - "default_icon": "icon-32.png" + "default_icon": "icon32.png" }, "icons": { - "128": "icon-128.png" + "128": "icon128.png" } } diff --git a/src/theme.ts b/src/theme.ts index 1790fee..e46c22a 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -4,8 +4,8 @@ export const theme: Theme = { colors: { text: '#333333', background: '#FDFDFD', - primary: '#a55eea', - primaryDark: '#9454d2', + primary: '#B77EEE', + primaryDark: '#a55eea', red: '#fc5c65', redDark: '#e2525a', green: '#26de81', @@ -49,6 +49,7 @@ export const theme: Theme = { }, buttons: { primary: { + borderRadius: 0, color: 'background', bg: 'primary', py: '3px', diff --git a/webpack.config.js b/webpack.config.js index 0b1834f..9637da9 100755 --- a/webpack.config.js +++ b/webpack.config.js @@ -131,7 +131,7 @@ var options = { new CopyWebpackPlugin({ patterns: [ { - from: 'src/assets/img/icon-128.png', + from: 'src/assets/img/icon128.png', to: path.join(__dirname, 'build'), force: true, }, @@ -140,7 +140,7 @@ var options = { new CopyWebpackPlugin({ patterns: [ { - from: 'src/assets/img/icon-32.png', + from: 'src/assets/img/icon32.png', to: path.join(__dirname, 'build'), force: true, },