const config = { // Dark theme dark:{ color:{ bg:"#12181b", color:"#e0e0e0", codeKeyColor:"#b372a8", codeCommentColor:"#538b46", codeStringColor:"#B58672", codeFuncColor:"#dbdba6", } }, // Light theme light:{ color:{ bg:"#fbfbfb", color:"#5f5f5f", codeKeyColor:"#b372a8", codeCommentColor:"#538b46", codeStringColor:"#B58672", codeFuncColor:"#b9b921", } }, } export function theme(theme:"dark" | "light"){ return ` ` }