diff options
Diffstat (limited to 'vhosts/blog/public/my-icon.js')
| -rw-r--r-- | vhosts/blog/public/my-icon.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vhosts/blog/public/my-icon.js b/vhosts/blog/public/my-icon.js index 92e32561..48c556da 100644 --- a/vhosts/blog/public/my-icon.js +++ b/vhosts/blog/public/my-icon.js @@ -110,7 +110,8 @@ const init = () => { } const [r, g, b] = randomChoice(colorMosaic); - ctx.fillStyle = `rgba(${r}, ${g}, ${b}, 0.75)`; + const a = 0.9 - f * 0.05; + ctx.fillStyle = `rgba(${r}, ${g}, ${b}, ${a})`; ctx.fillRect(x, y, 10, 10); } } |
