rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
56 lines (27 loc) • 830 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [rc-js-util](./rc-js-util.md) > [RgbaColorPacker](./rc-js-util.rgbacolorpacker.md) > [getHexColorString](./rc-js-util.rgbacolorpacker.gethexcolorstring.md)
## RgbaColorPacker.getHexColorString() method
Given a packed color, produce a dom color string like `#FF0000`<!-- -->.
**Signature:**
```typescript
static getHexColorString(value: number): string;
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
value
</td><td>
number
</td><td>
</td></tr>
</tbody></table>
**Returns:**
string
## Remarks
Made up of only 6 components, the alpha channel will be masked out.