Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

20
node_modules/rgbcolor/README.md generated vendored Normal file
View File

@@ -0,0 +1,20 @@
# node-rgbcolor
A nodejs module to parse color values
Based on rgbcolor.js by Stoyan Stefanov <sstoo@gmail.com>
http://www.phpied.com/rgb-color-parser-in-javascript/
## Usage
```` js
var RGBColor = require('rgbcolor');
var color = new RGBColor('darkblue');
if (color.ok) { // 'ok' is true when the parsing was a success
// log channels
console.log(color.r + ', ' + color.g + ', ' + color.b);
// log HEX and RGB
console.log(color.toHex());
console.log(color.toRGB());
}
````