diff options
Diffstat (limited to 'src/lib/utils/BushConstants.ts')
-rw-r--r-- | src/lib/utils/BushConstants.ts | 6 |
1 files changed, 5 insertions, 1 deletions
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 |