From d0a8782aa0b836e46b21923344d92a414242adda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Fri, 8 Jan 2021 12:14:42 +0900 Subject: [PATCH] feat: added Status Constants --- utils/Constants.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/utils/Constants.ts b/utils/Constants.ts index 8e87caf..d485024 100644 --- a/utils/Constants.ts +++ b/utils/Constants.ts @@ -1,3 +1,30 @@ +export const Status = { + online: { + text: '온라인', + color: 'green-400' + }, + idle: { + text: '자리 비움', + color: 'yellow-300' + }, + dnd: { + text: '다른 용무중', + color: 'red-500' + }, + offline: { + text: '오프라인', + color: 'gray-500' + }, + null: { + text: '알 수 없음', + color : 'gray-500' + }, + '???': { + text: '알 수 없음', + color: 'gray-500' + } +} + export const libs = [ 'discord.js', 'Eris',