ayu static method

Theme ayu()

ayu theme.

Implementation

static Theme ayu() {
  const primary = BasicColor('#59C2FF');
  const secondary = BasicColor('#D2A6FF');
  const accent = BasicColor('#E6B450');
  const error = BasicColor('#D95757');
  const warning = BasicColor('#E6B673');
  const success = BasicColor('#7FD962');
  const info = BasicColor('#39BAE6');
  const text = BasicColor('#BFBDB6');
  const textMuted = BasicColor('#565B66');
  const background = BasicColor('#0B0E14');
  const backgroundPanel = BasicColor('#0F131A');
  const backgroundElement = BasicColor('#0D1017');
  const border = BasicColor('#6C7380');
  const borderActive = BasicColor('#6C7380');
  const borderSubtle = BasicColor('#11151C');

  return _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,
  );
}