frontend for xcvr appview

finally fix the unset color of inputs

+1 -1
+1 -1
src/lib/components/AutoGrowInput.svelte
··· 53 53 onbeforeinput={onBeforeInput} 54 54 style:font-weight={bold ? "700" : "inherit"} 55 55 style:--theme={color} 56 + style:color={color ? "var(--theme)" : ""} 56 57 style:--themep={hexToTransparent(color ?? "#ffffff")} 57 58 style:font-size={fs ?? "1rem"} 58 59 {placeholder} ··· 60 61 61 62 <style> 62 63 input { 63 - color: var(--theme); 64 64 background-color: transparent; 65 65 border: none; 66 66 }