Skip to content

Commit 47d4b07

Browse files
committed
fix: improve look of lock guy
1 parent c2b205d commit 47d4b07

1 file changed

Lines changed: 37 additions & 37 deletions

File tree

src/utils/lock-art.ts

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -8,56 +8,56 @@ const unicode = isUnicodeSupported();
88
// prettier-ignore
99
const UNICODE_LOCKS: Record<LockExpression, string[]> = {
1010
success: [
11-
' ╭─╮ ',
12-
' │ │ ',
13-
'╔╧═╧╗',
14-
'║◠ ◠║',
15-
'║ ║',
16-
'╚═══╝',
11+
' ╭───╮ ',
12+
' │ │ ',
13+
'╔═╧═══╧═╗',
14+
'║ ◠ ◠ ║',
15+
'║ ║',
16+
'╚═══════╝',
1717
],
1818
warning: [
19-
' ╭─╮ ',
20-
' │ │ ',
21-
'╔╧═╧╗',
22-
'║• •║',
23-
'║ ║',
24-
'╚═══╝',
19+
' ╭───╮ ',
20+
' │ │ ',
21+
'╔═╧═══╧═╗',
22+
'║ • • ║',
23+
'║ ║',
24+
'╚═══════╝',
2525
],
2626
error: [
27-
' ╭─╮ ',
28-
' │ │ ',
29-
'╔══╗',
30-
'║× ×║',
31-
'║ ║',
32-
'╚═══╝',
27+
' ╭───╮ ',
28+
' │ │ ',
29+
'╔═╧═════╗',
30+
'║ × × ║',
31+
'║ ║',
32+
'╚═══════╝',
3333
],
3434
};
3535

3636
// prettier-ignore
3737
const ASCII_LOCKS: Record<LockExpression, string[]> = {
3838
success: [
39-
' .-. ',
40-
' | | ',
41-
'+---+',
42-
'|^ ^|',
43-
'| v |',
44-
'+---+',
39+
' .---. ',
40+
' | | ',
41+
'+-------+',
42+
'| ^ ^ |',
43+
'| v |',
44+
'+-------+',
4545
],
4646
warning: [
47-
' .-. ',
48-
' | | ',
49-
'+---+',
50-
'|. .|',
51-
'| - |',
52-
'+---+',
47+
' .---. ',
48+
' | | ',
49+
'+-------+',
50+
'| . . |',
51+
'| - |',
52+
'+-------+',
5353
],
5454
error: [
55-
' .-. ',
56-
' | ',
57-
'+---+',
58-
'|x x|',
59-
'| ^ |',
60-
'+---+',
55+
' .---. ',
56+
' | ',
57+
'+-------+',
58+
'| x x |',
59+
'| ^ |',
60+
'+-------+',
6161
],
6262
};
6363

@@ -68,7 +68,7 @@ const COLORS: Record<LockExpression, (text: string) => string> = {
6868
};
6969

7070
/** Width of each lock art line (all lines are the same width). */
71-
export const LOCK_WIDTH = 5;
71+
export const LOCK_WIDTH = 9;
7272

7373
/**
7474
* Returns the WorkOS lock character as an array of lines.

0 commit comments

Comments
 (0)