Skip to content

Commit

Permalink
feat: adjust appearance to official RGB
Browse files Browse the repository at this point in the history
  • Loading branch information
maneike committed Oct 15, 2024
1 parent c8e1594 commit af60e27
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ const asciiArt = `

function displayHeader() {
const metalGradient = gradient([
{ color: '#4F4F4F', pos: 0 },
{ color: '#B0B0B0', pos: 0.5 },
{ color: '#4F4F4F', pos: 1 },
{ color: '#3C3C3C', pos: 0 },
{ color: '#FFFFFF', pos: 0.5 },
{ color: '#BDBDBD', pos: 0.75 },
{ color: '#3C3C3C', pos: 1 },
]);

console.log(metalGradient(asciiArt));
Expand Down

0 comments on commit af60e27

Please sign in to comment.