chore: make SyntaxHighlightStyle.color optional

Sergey Onufrienko created

Change summary

styles/src/themes/common/syntax.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

styles/src/themes/common/syntax.ts 🔗

@@ -4,7 +4,7 @@ import { ColorScheme } from "./colorScheme"
 import chroma from "chroma-js"
 
 export interface SyntaxHighlightStyle {
-    color: string
+    color?: string
     weight?: FontWeight
     underline?: boolean
     italic?: boolean