EpubTheme.light constructor

EpubTheme.light()

Uses light theme, white background and black foreground color

Implementation

factory EpubTheme.light() {
  return EpubTheme(
    backgroundDecoration: const BoxDecoration(
        color: Colors.white,
    ),
    foregroundColor: Colors.black,
    themeType: EpubThemeType.light,
  );
}