@apiverve/texttocolor 1.1.4 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -20
- package/package.json +31 -31
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Text to Color API
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
-
Text to Color is a simple tool for converting
|
|
4
|
+
Text to Color is a simple tool for converting color from natural language. It returns the color code based on the text provided.
|
|
5
5
|
|
|
6
6
|

|
|
7
7
|

|
|
@@ -67,25 +67,25 @@ api.execute(query, function (error, data) {
|
|
|
67
67
|
###### Example Response
|
|
68
68
|
|
|
69
69
|
```
|
|
70
|
-
{
|
|
71
|
-
"status": "ok",
|
|
72
|
-
"error": null,
|
|
73
|
-
"data": {
|
|
74
|
-
"color": "turquoise",
|
|
75
|
-
"hex": "#40E0D0",
|
|
76
|
-
"rgb": "64, 224, 208",
|
|
77
|
-
"hsl": "174, 72, 56",
|
|
78
|
-
"cmyk": "71, 0, 7, 12",
|
|
79
|
-
"ansi16": 96,
|
|
80
|
-
"channels": {
|
|
81
|
-
"rgbChannels": 3,
|
|
82
|
-
"cmykChannels": 4,
|
|
83
|
-
"ansiChannels": 1,
|
|
84
|
-
"hexChannels": 1,
|
|
85
|
-
"hslChannels": 3
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"code": 200
|
|
70
|
+
{
|
|
71
|
+
"status": "ok",
|
|
72
|
+
"error": null,
|
|
73
|
+
"data": {
|
|
74
|
+
"color": "turquoise",
|
|
75
|
+
"hex": "#40E0D0",
|
|
76
|
+
"rgb": "64, 224, 208",
|
|
77
|
+
"hsl": "174, 72, 56",
|
|
78
|
+
"cmyk": "71, 0, 7, 12",
|
|
79
|
+
"ansi16": 96,
|
|
80
|
+
"channels": {
|
|
81
|
+
"rgbChannels": 3,
|
|
82
|
+
"cmykChannels": 4,
|
|
83
|
+
"ansiChannels": 1,
|
|
84
|
+
"hexChannels": 1,
|
|
85
|
+
"hslChannels": 3
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"code": 200
|
|
89
89
|
}
|
|
90
90
|
```
|
|
91
91
|
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@apiverve/texttocolor",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Text to Color is a simple tool for converting
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "mocha"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/apiverve/texttocolor-API.git"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"text to color","text to color api","text to color tool","text to color software","text to color service"
|
|
15
|
-
],
|
|
16
|
-
"author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
|
|
17
|
-
"license": "MIT",
|
|
18
|
-
"bugs": {
|
|
19
|
-
"url": "https://github.com/apiverve/texttocolor-API/issues"
|
|
20
|
-
},
|
|
21
|
-
"homepage": "https://apiverve.com/marketplace/api/texttocolor",
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"mocha": "^
|
|
24
|
-
"chai": "^5.1.
|
|
25
|
-
"dotenv": "^16.4.
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"node-fetch": "^3.3.2",
|
|
29
|
-
"promise": "^8.3.0",
|
|
30
|
-
"axios": "1.7.
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@apiverve/texttocolor",
|
|
3
|
+
"version": "1.1.6",
|
|
4
|
+
"description": "Text to Color is a simple tool for converting color from natural language. It returns the color code based on the text provided.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "mocha"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/apiverve/texttocolor-API.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"text to color","text to color api","text to color tool","text to color software","text to color service"
|
|
15
|
+
],
|
|
16
|
+
"author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/apiverve/texttocolor-API/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://apiverve.com/marketplace/api/texttocolor?utm_source=npm",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"mocha": "^11.0.1",
|
|
24
|
+
"chai": "^5.1.2",
|
|
25
|
+
"dotenv": "^16.4.7"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"node-fetch": "^3.3.2",
|
|
29
|
+
"promise": "^8.3.0",
|
|
30
|
+
"axios": "1.7.9"
|
|
31
|
+
}
|
|
32
32
|
}
|