getColorScheme static method

ColorScheme getColorScheme()

Implementation

static ColorScheme getColorScheme() {
  if (_isDarkMode()) {
    return ColorScheme.dark(primary: AliceConstants.lightRed);
  } else {
    return ColorScheme.light(primary: AliceConstants.lightRed);
  }
}