a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

don't use rgba when parsing color for icon

+1 -1
+1 -1
src/utils/parseHSB.ts
··· 22 22 Math.round(fn(1) * 255), 23 23 a, 24 24 ]; 25 - return `rgba(${r}, ${g}, ${b}, ${a})`; 25 + return `rgb(${r}, ${g}, ${b})`; 26 26 } 27 27 } 28 28