ColorIndex番号, 色見本, 色名, 16進数, RGB, Color番号 '赤の場合 ActiveCell.Interior.ColorIndex = 3 ActiveCell.Interior.color = RGB(255, 0, 0) ActiveCell.Interior.color = 255 1 ■ 黒 #000000 / RGB(0,0,0) / 0 2 ■ 白 #FFFFFF / RGB(255,255,255) / 16777215 3 ■ 赤 #FF0000 / RGB(255,0,0) / 255 4 ■ 明るい緑 #00FF00 / RGB(0,255,0) / 65280 5 ■ 青 #0000FF / RGB(0,0,255) / 16711680 6 ■ 黄 #FFFF00 / RGB(255,255,0) / 65535 7 ■ ピ