Open1
p5.js tips
色を少し濃くする
// 現在の色から少し濃い色に変換する
let currentColor = color(textColor);
let darkerColor = color(
red(currentColor),
green(currentColor),
blue(currentColor),
alpha(currentColor)
);
darkerColor.setRed(red(darkerColor) + 10); // 赤の値を10上げる
darkerColor.setGreen(green(darkerColor) + 10); // 緑の値を10上げる
darkerColor.setBlue(blue(darkerColor) + 10); // 青の値を10上げる
fill(darkerColor);