From c4c1d9ffeb179e208792c88dd099caea5030581b Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 5 Sep 2021 20:24:50 -0400 Subject: add moderation logging, fixes, hide modlog, jank --- src/lib/utils/BushConstants.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/lib/utils') diff --git a/src/lib/utils/BushConstants.ts b/src/lib/utils/BushConstants.ts index a8f75fa..f085d26 100644 --- a/src/lib/utils/BushConstants.ts +++ b/src/lib/utils/BushConstants.ts @@ -1,3 +1,5 @@ +import { Constants, ConstantsColors } from 'discord.js'; + interface bushColors { default: '#1FD8F1'; error: '#EF4947'; @@ -21,6 +23,7 @@ interface bushColors { darkGray: '#7a7a7a'; black: '#000000'; orange: '#E86100'; + discord: ConstantsColors; } export type PronounCode = @@ -110,7 +113,8 @@ export class BushConstants { lightGray: '#cfcfcf', darkGray: '#7a7a7a', black: '#000000', - orange: '#E86100' + orange: '#E86100', + discord: Constants.Colors }; // Somewhat stolen from @Mzato0001 -- cgit