Get Color Level 136 Access

let gray136 = `rgb(136, 136, 136)`; console.log(gray136);

from PIL import ImageColor color = ImageColor.getrgb("rgb(136, 136, 136)") print(color) # (136, 136, 136) get color level 136

If applied to all three channels equally (136, 136, 136), it produces a : rgb(136, 136, 136) → #888888 let gray136 = `rgb(136, 136, 136)`; console