| Server IP : 159.203.156.69 / Your IP : 216.73.216.37 Web Server : nginx/1.24.0 System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/tanviranik.com/node_modules/hex-rgb/ |
Upload File : |
declare namespace hexRgb {
interface Options {
/**
The RGB output format.
Note that when using the `css` format, the value of the alpha channel is rounded to two decimal places.
@default 'object'
*/
readonly format?: 'object' | 'array' | 'css';
/**
Set the alpha of the color.
This overrides any existing alpha component in the Hex color string. For example, the `99` in `#22222299`.
The number must be in the range 0 to 1.
*/
readonly alpha?: number;
}
interface RgbaObject {
red: number;
green: number;
blue: number;
alpha: number;
}
// TODO: Use named tuples here when TS 4 is more commonly used.
type RgbaTuple = [number, number, number, number];
}
/**
Convert HEX color to RGBA.
@param hex - The color in HEX format. Leading `#` is optional.
@example
```
import hexRgb = require('hex-rgb');
hexRgb('4183c4');
//=> {red: 65, green: 131, blue: 196, alpha: 1}
hexRgb('#4183c4');
//=> {red: 65, green: 131, blue: 196, alpha: 1}
hexRgb('#fff');
//=> {red: 255, green: 255, blue: 255, alpha: 1}
hexRgb('#22222299');
//=> {red: 34, green: 34, blue: 34, alpha: 0.6}
hexRgb('#0006');
//=> {red: 0, green: 0, blue: 0, alpha: 0.4}
hexRgb('#cd2222cc');
//=> {red: 205, green: 34, blue: 34, alpha: 0.8}
hexRgb('#cd2222cc', {format: 'array'});
//=> [205, 34, 34, 0.8]
hexRgb('#cd2222cc', {format: 'css'});
//=> 'rgb(205 34 34 / 80%)'
hexRgb('#000', {format: 'css'});
//=> 'rgb(0 0 0)'
hexRgb('#22222299', {alpha: 1});
//=> {red: 34, green: 34, blue: 34, alpha: 1}
hexRgb('#fff', {alpha: 0.5});
//=> {red: 255, green: 255, blue: 255, alpha: 0.5}
```
*/
declare function hexRgb(hex: string): hexRgb.RgbaObject;
declare function hexRgb(hex: string, options: hexRgb.Options & {format: 'object'}): hexRgb.RgbaObject;
declare function hexRgb(hex: string, options: hexRgb.Options & {format: 'array'}): hexRgb.RgbaTuple;
declare function hexRgb(hex: string, options: hexRgb.Options & {format: 'css'}): string;
export = hexRgb;