Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.10.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
sass /
types /
value /
Delete
Unzip
Name
Size
Permission
Date
Action
argument_list.d.ts
1.54
KB
-rw-rw-r--
2022-08-30 11:49
boolean.d.ts
616
B
-rw-rw-r--
2022-08-30 11:49
color.d.ts
2.47
KB
-rw-rw-r--
2022-08-30 11:49
function.d.ts
859
B
-rw-rw-r--
2022-08-30 11:49
index.d.ts
5.42
KB
-rw-rw-r--
2022-08-30 11:49
list.d.ts
1.44
KB
-rw-rw-r--
2022-08-30 11:49
map.d.ts
1.08
KB
-rw-rw-r--
2022-08-30 11:49
number.d.ts
11.3
KB
-rw-rw-r--
2022-08-30 11:49
string.d.ts
3.11
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import {Value} from './index'; /** * Sass's [color type](https://sass-lang.com/documentation/values/colors). * * No matter what representation was originally used to create this color, all * of its channels are accessible. * * @category Custom Function */ export class SassColor extends Value { /** * Creates an RGB color. * * @throws `Error` if `red`, `green`, and `blue` aren't between `0` and * `255`, or if `alpha` isn't between `0` and `1`. */ constructor(options: { red: number; green: number; blue: number; alpha?: number; }); /** * Creates an HSL color. * * @throws `Error` if `saturation` or `lightness` aren't between `0` and * `100`, or if `alpha` isn't between `0` and `1`. */ constructor(options: { hue: number; saturation: number; lightness: number; alpha?: number; }); /** * Creates an HWB color. * * @throws `Error` if `whiteness` or `blackness` aren't between `0` and `100`, * or if `alpha` isn't between `0` and `1`. */ constructor(options: { hue: number; whiteness: number; blackness: number; alpha?: number; }); /** This color's red channel, between `0` and `255`. */ get red(): number; /** This color's green channel, between `0` and `255`. */ get green(): number; /** This color's blue channel, between `0` and `255`. */ get blue(): number; /** This color's hue, between `0` and `360`. */ get hue(): number; /** This color's saturation, between `0` and `100`. */ get saturation(): number; /** This color's lightness, between `0` and `100`. */ get lightness(): number; /** This color's whiteness, between `0` and `100`. */ get whiteness(): number; /** This color's blackness, between `0` and `100`. */ get blackness(): number; /** This color's alpha channel, between `0` and `1`. */ get alpha(): number; /** * Changes one or more of this color's RGB channels and returns the result. */ change(options: { red?: number; green?: number; blue?: number; alpha?: number; }): SassColor; /** * Changes one or more of this color's HSL channels and returns the result. */ change(options: { hue?: number; saturation?: number; lightness?: number; alpha?: number; }): SassColor; /** * Changes one or more of this color's HWB channels and returns the result. */ change(options: { hue?: number; whiteness?: number; blackness?: number; alpha?: number; }): SassColor; }