カラーコードの表示がタグ化しないように

This commit is contained in:
na2na 2022-02-17 01:13:49 +09:00
parent cb0878fab1
commit c63341d8a6

View file

@ -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);