Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1export function remToPx(remValue) { 2 let rootFontSize = 3 typeof window === 'undefined' 4 ? 16 5 : parseFloat(window.getComputedStyle(document.documentElement).fontSize) 6 7 return parseFloat(remValue) * rootFontSize 8}