@dimivelev/chimera 0.78.0 → 0.78.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -431,16 +431,12 @@ export class InteractiveMode {
431
431
  // Add header with keybindings from config (unless silenced)
432
432
  if (this.options.verbose || !this.settingsManager.getQuietStartup()) {
433
433
  const logoLines = [
434
- ` /\\_/\\`,
435
- ` ( o.o )`,
436
- ` > ^ <`,
437
- ``,
438
- ` +==============================+`,
439
- ` | |`,
440
- ` | * C H I M E R A * |`,
441
- ` | ~~~~~~~~~~~~~~~~~~~~ |`,
442
- ` | |`,
443
- ` +==============================+`,
434
+ `_________ ___ ___ .___ _____ _____________________ _____ `,
435
+ `\\_ ___ \\ / | \\| | / \\ \\_ _____/\\______ \\ / _ \\ `,
436
+ `/ \\ \\// ~ \\ |/ \\ / \\ | __)_ | _/ / /_\\ \\ `,
437
+ `\\ \\___\\ Y / / Y \\| \\ | | \\/ | \\`,
438
+ ` \\______ /\\___|_ /|___\\____|__ /_______ / |____|_ /\\____|__ /`,
439
+ ` \\/ \\/ \\/ \\/ \\/ \\/ `,
444
440
  ];
445
441
  const asciiLogo = logoLines.map((l) => theme.bold(theme.fg("accent", l))).join("\n");
446
442
  const logo = `${asciiLogo}\n${theme.fg("dim", `v${this.version}`)}`;