Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
kuler /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
51
B
-rw-r--r--
2026-02-18 13:02
LICENSE
1.03
KB
-rw-r--r--
2026-02-18 13:02
README.md
903
B
-rw-r--r--
2026-02-18 13:02
index.js
2.5
KB
-rw-r--r--
2026-02-18 13:02
package.json
1.4
KB
-rw-r--r--
2026-02-18 13:02
test.js
883
B
-rw-r--r--
2026-02-18 13:02
Save
Rename
# kuler Kuler is small and nifty node module that allows you to create terminal based colors using hex color codes, just like you're used to doing in your CSS. We're in a modern world now and terminals support more than 16 colors so we are stupid to not take advantage of this. ## Installation The package is released in the public npm registry and can be installed by running: ``` npm install --save kuler ``` ## Usage To color a string simply pass it the string you want to have colored as first argument and the color as hex as second argument: ```js 'use strict'; const kuler = require('kuler'); const str = kuler('foo', '#FF6600'); ``` The color code sequence is automatically terminated at the end of the string so the colors do no bleed to other pieces of text. So doing: ```js console.log(kuler('red', '#F00'), 'normal'); ``` Will work without any issues. ## License [MIT](LICENSE)