From 359c2272696a38b7f6e43f5674e19b382374e513 Mon Sep 17 00:00:00 2001 From: na2na <49822810+na2na-p@users.noreply.github.com> Date: Sat, 19 Feb 2022 15:34:53 +0900 Subject: [PATCH] =?UTF-8?q?=E9=96=89=E3=81=98=E3=81=8B=E3=81=A3=E3=81=93?= =?UTF-8?q?=E3=81=AE=E4=BD=8D=E7=BD=AE=E3=81=8C=E3=81=8A=E3=81=8B=E3=81=97?= =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=9F=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= 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 140e36e..3cd0f2b 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);