Skip to content

Commit 299f20c

Browse files
committed
refactor(console-spinner): update spinner characters
- Commented out the previous spinner characters - Added new spinner characters with different color codes - This change improves the visibility and aesthetics of the console spinner
1 parent fd73eac commit 299f20c

File tree

1 file changed

+63
-8
lines changed

1 file changed

+63
-8
lines changed

config/console-spinner.php

Lines changed: 63 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,69 @@
1616
* showing the loading animation.
1717
*/
1818
'chars' => [
19-
'',
20-
'',
21-
'',
22-
'',
23-
'',
24-
'',
25-
'',
26-
'',
19+
// '⠏', '⠛', '⠹', '⢸', '⣰', '⣤', '⣆', '⡇',
20+
// '⠋', '⠙', '⠚', '⠛', '⠓', '⠉', '⠙', '⠚', '⠒',
21+
// '◐', '◓', '◑', '◒',
22+
// '🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘',
23+
// '🕛', '🕐', '🕑', '🕒', '🕓', '🕔', '🕕', '🕖',
24+
25+
// "\033[96m⠏\033[0m",
26+
// "\033[96m⠛\033[0m",
27+
// "\033[96m⠹\033[0m",
28+
// "\033[96m⢸\033[0m",
29+
// "\033[96m⣰\033[0m",
30+
// "\033[96m⣤\033[0m",
31+
// "\033[96m⣆\033[0m",
32+
// "\033[96m⡇\033[0m",
33+
34+
// "\033[38;5;196m⠏\033[0m",
35+
// "\033[38;5;154m⠛\033[0m",
36+
// "\033[38;5;118m⠹\033[0m",
37+
// "\033[38;5;82m⢸\033[0m",
38+
// "\033[38;5;51m⣰\033[0m",
39+
// "\033[38;5;93m⣤\033[0m",
40+
// "\033[38;5;129m⣆\033[0m",
41+
// "\033[38;5;201m⡇\033[0m",
42+
43+
// "\033[38;5;196m◐\033[0m",
44+
// "\033[38;5;154m◓\033[0m",
45+
// "\033[38;5;118m◑\033[0m",
46+
// "\033[38;5;82m◒\033[0m",
47+
// "\033[38;5;51m◐\033[0m",
48+
// "\033[38;5;93m◓\033[0m",
49+
// "\033[38;5;129m◑\033[0m",
50+
// "\033[38;5;201m◒\033[0m",
51+
52+
'●',
53+
'●',
54+
'●',
55+
'●',
56+
'●',
57+
'●',
58+
'●',
59+
'●',
60+
'●',
61+
'●',
62+
'●',
63+
'●',
64+
'●',
65+
'●',
66+
'●',
67+
'●',
68+
'●',
69+
'●',
70+
'●',
71+
'●',
72+
'●',
73+
'●',
74+
'●',
75+
'●',
76+
'●',
77+
'●',
78+
'●',
79+
'●',
80+
'●',
81+
'●',
2782
],
2883

2984
'message' => '',

0 commit comments

Comments
 (0)