MCPcopy Create free account
hub / github.com/codeaashu/claude-code / fromColorRGB

Method fromColorRGB

src/server/web/public/terminal.js:3708–3710  ·  view source on GitHub ↗
(e3)

Source from the content-addressed store, hash-verified

3706 return [e3 >>> 16 & 255, e3 >>> 8 & 255, 255 & e3];
3707 }
3708 static fromColorRGB(e3) {
3709 return (255 & e3[0]) << 16 | (255 & e3[1]) << 8 | 255 & e3[2];
3710 }
3711 clone() {
3712 const e3 = new i2();
3713 return e3.fg = this.fg, e3.bg = this.bg, e3.extended = this.extended.clone(), e3;

Callers 1

_updateAttrColorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected