defaultLightTheme static method
Implementation
static HighlightTheme defaultLightTheme(){
return const HighlightTheme(
bgColor: Colors.white,
operatorStyle: TextStyle(color: Colors.black),
commentStyle: TextStyle(color: Colors.black45,fontStyle: FontStyle.italic),
multiLineCommentStyle: TextStyle(color: Colors.black45,fontStyle: FontStyle.italic),
specialCharacterStyle: TextStyle(color: Colors.orangeAccent),
textColor: Colors.black
);
}