auto static method

LatexTheme auto({
  1. LatexThemeColors light = defaultLightColors,
  2. LatexThemeColors dark = defaultDarkColors,
})

Implementation

static LatexTheme auto({
  LatexThemeColors light = defaultLightColors,
  LatexThemeColors dark = defaultDarkColors,
}) {
  return LatexTheme.adaptive(light: light, dark: dark);
}