Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
syrihapj /
public_html /
node_modules /
colord /
[ HOME SHELL ]
Name
Size
Permission
Action
plugins
[ DIR ]
dr-xr-xr-x
CHANGELOG.md
3.31
KB
-rw-r--r--
LICENSE.md
1.06
KB
-rw-r--r--
README.md
37.48
KB
-rw-r--r--
colord.d.ts
3.27
KB
-rw-r--r--
constants.d.ts
368
B
-rw-r--r--
extend.d.ts
217
B
-rw-r--r--
helpers.d.ts
908
B
-rw-r--r--
index.d.ts
347
B
-rw-r--r--
index.js
5.79
KB
-rw-r--r--
index.mjs
5.73
KB
-rw-r--r--
package.json
4.74
KB
-rw-r--r--
parse.d.ts
434
B
-rw-r--r--
random.d.ts
80
B
-rw-r--r--
types.d.ts
1.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types.d.ts
export declare type RgbColor = { r: number; g: number; b: number; }; export declare type HslColor = { h: number; s: number; l: number; }; export declare type HsvColor = { h: number; s: number; v: number; }; export declare type HwbColor = { h: number; w: number; b: number; }; export interface XyzColor { x: number; y: number; z: number; } export interface LabColor { l: number; a: number; b: number; } export interface LchColor { l: number; c: number; h: number; } export interface CmykColor { c: number; m: number; y: number; k: number; } declare type WithAlpha<O> = O & { a: number; }; export declare type RgbaColor = WithAlpha<RgbColor>; export declare type HslaColor = WithAlpha<HslColor>; export declare type HsvaColor = WithAlpha<HsvColor>; export declare type HwbaColor = WithAlpha<HwbColor>; export declare type XyzaColor = WithAlpha<XyzColor>; export declare type LabaColor = LabColor & { alpha: number; }; export declare type LchaColor = WithAlpha<LchColor>; export declare type CmykaColor = WithAlpha<CmykColor>; export declare type ObjectColor = RgbColor | RgbaColor | HslColor | HslaColor | HsvColor | HsvaColor | HwbColor | HwbaColor | XyzColor | XyzaColor | LabColor | LabaColor | LchColor | LchaColor | CmykColor | CmykaColor; export declare type AnyColor = string | ObjectColor; export declare type InputObject = Record<string, unknown>; export declare type Format = "name" | "hex" | "rgb" | "hsl" | "hsv" | "hwb" | "xyz" | "lab" | "lch" | "cmyk"; export declare type Input = string | InputObject; export declare type ParseResult = [RgbaColor, Format]; export declare type ParseFunction<I extends Input> = (input: I) => RgbaColor | null; export declare type Parser<I extends Input> = [ParseFunction<I>, Format]; export declare type Parsers = { string: Array<Parser<string>>; object: Array<Parser<InputObject>>; }; export {};
Close