Skip to content

Commit 9dbebe1

Browse files
feat: adjust coloring
1 parent 13ba694 commit 9dbebe1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/lib/tokens.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ async function listTokensAction() {
219219
// show empty table if no tokens
220220
if (tokens.length === 0) {
221221
const table = new Table({
222-
head: [gray("Access Tokens")],
222+
head: [cyan("Access Tokens")],
223223
colWidths: [50],
224224
});
225225
table.push([
@@ -242,15 +242,15 @@ async function listTokensAction() {
242242
// display table
243243
const tokensTable = new Table({
244244
head: [
245-
gray("Token ID"),
246-
gray("Name"),
247-
gray("Expires"),
245+
cyan("Token ID"),
246+
cyan("Name"),
247+
cyan("Expires"),
248248
],
249249
colWidths: [40, 15, 25],
250250
});
251251
for (const token of tokens) {
252252
tokensTable.push([
253-
cyan(token.id),
253+
white(token.id),
254254
token.name ? token.name : gray("(empty)"),
255255
white(formatDate(new Date(token.expires_at))),
256256
]);

0 commit comments

Comments
 (0)