aura static method

Theme aura()

aura theme.

Implementation

static Theme aura() {
  const primary = BasicColor('#a277ff');
  const secondary = BasicColor('#f694ff');
  const accent = BasicColor('#a277ff');
  const error = BasicColor('#ff6767');
  const warning = BasicColor('#ffca85');
  const success = BasicColor('#61ffca');
  const info = BasicColor('#a277ff');
  const text = BasicColor('#edecee');
  const textMuted = BasicColor('#6d6d6d');
  const background = BasicColor('#0f0f0f');
  const backgroundPanel = BasicColor('#15141b');
  const backgroundElement = BasicColor('#15141b');
  const border = BasicColor('#2d2d2d');
  const borderActive = BasicColor('#6d6d6d');
  const borderSubtle = BasicColor('#2d2d2d');

  return _withEditorThemeOverrides(
    _buildTheme(
      primary: primary,
      secondary: secondary,
      accent: accent,
      error: error,
      warning: warning,
      success: success,
      info: info,
      text: text,
      textMuted: textMuted,
      background: background,
      backgroundPanel: backgroundPanel,
      backgroundElement: backgroundElement,
      border: border,
      borderActive: borderActive,
      borderSubtle: borderSubtle,
    ),
    inactiveShellBackground: background,
  );
}