From c63341d8a63dc0554f13c56391587381070396b9 Mon Sep 17 00:00:00 2001 From: na2na <49822810+na2na-p@users.noreply.github.com> Date: Thu, 17 Feb 2022 01:13:49 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=AB=E3=83=A9=E3=83=BC=E3=82=B3=E3=83=BC?= =?UTF-8?q?=E3=83=89=E3=81=AE=E8=A1=A8=E7=A4=BA=E3=81=8C=E3=82=BF=E3=82=B0?= =?UTF-8?q?=E5=8C=96=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/color/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/color/index.ts b/src/modules/color/index.ts index dbb4a72..140e36e 100644 --- a/src/modules/color/index.ts +++ b/src/modules/color/index.ts @@ -22,7 +22,7 @@ export default class extends Module { const b = Math.floor(Math.random() * 256); // rgbをhexに変換する const hex = `${r.toString(16)}${g.toString(16)}${b.toString(16)}`; - const message = `RGB: ${r}, ${g}, ${b} (# ${hex})とかどう?` + const message = `RGB: ${r}, ${g}, ${b} (\`#${hex})\`とかどう?` setTimeout(async () => { const file = await this.getColorSampleFile(r,g,b);