catppuccinFrappe static method
catppuccinFrappe theme.
Implementation
static Theme catppuccinFrappe() {
const primary = BasicColor('#8da4e2');
const secondary = BasicColor('#ca9ee6');
const accent = BasicColor('#f4b8e4');
const error = BasicColor('#e78284');
const warning = BasicColor('#e5c890');
const success = BasicColor('#a6d189');
const info = BasicColor('#81c8be');
const text = BasicColor('#c6d0f5');
const textMuted = BasicColor('#b5bfe2');
const background = BasicColor('#303446');
const backgroundPanel = BasicColor('#292c3c');
const backgroundElement = BasicColor('#232634');
const border = BasicColor('#414559');
const borderActive = BasicColor('#51576d');
const borderSubtle = BasicColor('#626880');
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,
);
}