lucentOrng static method

Theme lucentOrng()

lucentOrng theme.

Implementation

static Theme lucentOrng() {
  const primary = BasicColor('#EC5B2B');
  const secondary = BasicColor('#EE7948');
  const accent = AdaptiveColor(
    dark: BasicColor('#FFF7F1'),
    light: BasicColor('#c94d24'),
  );
  const error = AdaptiveColor(
    dark: BasicColor('#e06c75'),
    light: BasicColor('#d1383d'),
  );
  const warning = BasicColor('#EC5B2B');
  const success = AdaptiveColor(
    dark: BasicColor('#6ba1e6'),
    light: BasicColor('#0062d1'),
  );
  const info = AdaptiveColor(
    dark: BasicColor('#56b6c2'),
    light: BasicColor('#318795'),
  );
  const text = AdaptiveColor(
    dark: BasicColor('#eeeeee'),
    light: BasicColor('#1a1a1a'),
  );
  const textMuted = AdaptiveColor(
    dark: BasicColor('#808080'),
    light: BasicColor('#8a8a8a'),
  );
  const background = NoColor();
  const backgroundPanel = NoColor();
  const backgroundElement = NoColor();
  const border = BasicColor('#EC5B2B');
  const borderActive = AdaptiveColor(
    dark: BasicColor('#EE7948'),
    light: BasicColor('#c94d24'),
  );
  const borderSubtle = AdaptiveColor(
    dark: BasicColor('#3c3c3c'),
    light: BasicColor('#d4d4d4'),
  );

  const editorShellBackground = AdaptiveColor(
    dark: BasicColor('#161210'),
    light: BasicColor('#fff4ec'),
  );
  const editorInactiveShellBackground = AdaptiveColor(
    dark: BasicColor('#100d0b'),
    light: BasicColor('#fffaf6'),
  );
  const editorBodyBackground = AdaptiveColor(
    dark: BasicColor('#1d1714'),
    light: BasicColor('#fffdfb'),
  );
  const editorInactiveBodyBackground = AdaptiveColor(
    dark: BasicColor('#171210'),
    light: BasicColor('#fff7f1'),
  );
  const editorUtilityBackground = AdaptiveColor(
    dark: BasicColor('#241b16'),
    light: BasicColor('#fff0e6'),
  );

  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,
    ),
    shellBackground: editorShellBackground,
    inactiveShellBackground: editorInactiveShellBackground,
    bodyBackground: editorBodyBackground,
    inactiveBodyBackground: editorInactiveBodyBackground,
    utilityBackground: editorUtilityBackground,
  );
}