diff --git a/src/images/icon-128.png b/src/images/icon-128.png index b192293ad..b06db84ae 100644 Binary files a/src/images/icon-128.png and b/src/images/icon-128.png differ diff --git a/src/images/icon-16.png b/src/images/icon-16.png index d8db5f23c..27d58c742 100644 Binary files a/src/images/icon-16.png and b/src/images/icon-16.png differ diff --git a/src/images/icon-19.png b/src/images/icon-19.png index b190377b0..6be8ab609 100644 Binary files a/src/images/icon-19.png and b/src/images/icon-19.png differ diff --git a/src/images/icon-38.png b/src/images/icon-38.png index 4d9e085da..b0ae378d7 100644 Binary files a/src/images/icon-38.png and b/src/images/icon-38.png differ diff --git a/src/images/icon-48.png b/src/images/icon-48.png index 12ed1e976..5fcd4b6fa 100644 Binary files a/src/images/icon-48.png and b/src/images/icon-48.png differ diff --git a/src/scripts/background.js b/src/scripts/background.js index b552518ea..a5db75a99 100644 --- a/src/scripts/background.js +++ b/src/scripts/background.js @@ -757,7 +757,22 @@ window.TogglButton = { ctx.closePath(); ctx.fill(); ctx.lineWidth = 2.5; + // Fill 360 arc with the same background color ctx.beginPath(); + ctx.strokeStyle = '#e57cd8'; + ctx.arc( + this.naturalWidth * 0.5, + this.naturalHeight * 0.5, + this.naturalWidth * 0.5 - 1, + quart * -1, + circ - quart, + false + ); + ctx.stroke(); + // Then progressively add the white arc + ctx.closePath(); + ctx.beginPath(); + ctx.strokeStyle = '#ffffff'; ctx.arc( this.naturalWidth * 0.5, this.naturalHeight * 0.5, diff --git a/src/scripts/components/Pomodoro.tsx b/src/scripts/components/Pomodoro.tsx index 488b0edb0..ca1cee51c 100644 --- a/src/scripts/components/Pomodoro.tsx +++ b/src/scripts/components/Pomodoro.tsx @@ -68,13 +68,13 @@ const Clock = styled.svg` `; const ActiveRing = styled.circle` - stroke: #e20505; + stroke: #e57cd8; stroke-dasharray: 892 892; animation-iteration-count: 1; `; const Stop = styled.rect` - fill: #f41d1d; + fill: #ff897a; opacity: 0; transition: 0.2s opacity ease-in; cursor: pointer; diff --git a/src/scripts/icons/toggl-button.svg b/src/scripts/icons/toggl-button.svg index d91fdc7e8..dc8ef2bc8 100644 --- a/src/scripts/icons/toggl-button.svg +++ b/src/scripts/icons/toggl-button.svg @@ -1,9 +1,21 @@ - -Toggl Button - - - - - + + Artboard + + + + + + + + + + + + + + + + + diff --git a/src/styles/style.css b/src/styles/style.css index 243f61cb0..563007510 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -83,6 +83,7 @@ height: 19px; display: inline-block; vertical-align: middle; + margin-right: 3px; } .toggl-button span {