Philipp Kühn

Results 25 comments of Philipp Kühn

If we didn't need a .zip file anymore, we wouldn't have to worry about this :) https://github.com/electron-userland/electron-builder/issues/4299

I fiddled around a bit. A funny side node: the native HTML color picker only works with hex colors 🙃 There are some options now: 1. we only support HEX...

yeah with HEX/RGB I meant HEX/RGB/RGBA :) lets’s do option 1 then!

Seems like that not every value will be converted by the browser :( ```js const div = document.createElement('div'); div.style.color = '#958DF100'; console.log(div.style.color); // rgba(149, 141, 241, 0) ``` ```js const...

Ok some more thoughts. [color2k](https://github.com/ricokahler/color2k) seems like a great small library and good fit [for our needs](https://github.com/ricokahler/color2k/blob/main/src/toHex.test.ts). But converting always to Hex will cause other issues. 1. `isActive` will fail...