Skip to content

Commit 00e2612

Browse files
committed
Changed Branding
1 parent 9d8ddc5 commit 00e2612

22 files changed

+145
-144
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ node_modules
22
package-lock.json
33
coverage
44
.nyc_output
5-
chromataxy-1.0.5.tgz
5+
chromanomer-*.tgz

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
# 🍭 Chromataxy
3-
**Chromataxy** (abbreviated ***coxy***) is a perceptually intuitive color naming system based on the ***Lightness Chroma Hue** color space* that covers a sizeable spectrum of colors while boasting a negligible learning curve.
2+
# 🍭 Chromanomer
3+
**Chromanomer** (abbreviated ***cono***) is a perceptually intuitive color naming system based on the ***Lightness Chroma Hue** color space* that covers a sizeable spectrum of colors while boasting a negligible learning curve.
44

55
// screenshot
66

77
Look below to learn more or go straight to [documentation](#-links-to-documentation).
88

99
<a href="https://github.com/arvindcheenu">Made with ❤️ by <b>Arvind Srinivasan</b>.</a>
10-
<b><small>Licensed Under <a href="https://github.com/arvindcheenu/Chromataxy/blob/master/LICENSE">Apache-2.0</a></small></b>.
10+
<b><small>Licensed Under <a href="https://github.com/arvindcheenu/Chromanomer/blob/master/LICENSE">Apache-2.0</a></small></b>.
1111

1212
### 🔑 Key Features
1313

@@ -28,14 +28,14 @@ This library builds over the **HSLUV** Color Space that maps the boundaries of R
2828

2929
The following schema was arrived at by extracting the best traits from existing naming solutions (such as the Five Color Primaries in *Munsell Naming System*) and selecting linguistically universal color terms. The incorporation of Adjective terms also enhances the learnability and composability by reducing the potential number of color terms to remember.
3030

31-
![Color Schema Visual Representation](https://raw.githubusercontent.com/arvindcheenu/Chromataxy/master/paper/schematic.jpeg)
31+
![Color Schema Visual Representation](https://raw.githubusercontent.com/arvindcheenu/Chromanomer/master/paper/schematic.jpeg)
3232

33-
For a more detailed look at an object applying this schema, please see the file [`./lang/coxy.en.json`](./lang/coxy.en.json).
33+
For a more detailed look at an object applying this schema, please see the file [`./lang/cono.en.json`](./lang/cono.en.json).
3434

3535
Besides the above considerations while designing the schema, the following were also looked for:
3636
* The arrangement of terms according to increasing order of intensity in chroma and lightness while diverging from the base value of the schema (see *The Handle* in the above schema).
3737
* The arrangement of Warm and Cool Ranges according to the gradatation of hues from adjacent hue sectors.
3838

3939
### 🔗 Links to Documentation
40-
|<h1>🚸</h1>[Installation & Usage](https://github.com/arvindcheenu/Chromataxy/blob/master/docs/INSTALL.md)|<h1>💄</h1>[Sass Api](https://github.com/arvindcheenu/Chromataxy/blob/master/docs/STYLE.md)|<h1>💻</h1>[Node Api](https://github.com/arvindcheenu/Chromataxy/blob/master/docs/API.md)|<h1>🕹️</h1>[Command Line Api](https://github.com/arvindcheenu/Chromataxy/blob/master/docs/CLI.md)|
40+
|<h1>🚸</h1>[Installation & Usage](https://github.com/arvindcheenu/Chromanomer/blob/master/docs/INSTALL.md)|<h1>💄</h1>[Sass Api](https://github.com/arvindcheenu/Chromanomer/blob/master/docs/STYLE.md)|<h1>💻</h1>[Node Api](https://github.com/arvindcheenu/Chromanomer/blob/master/docs/API.md)|<h1>🕹️</h1>[Command Line Api](https://github.com/arvindcheenu/Chromanomer/blob/master/docs/CLI.md)|
4141
|--|--|--|--|

bin/index.js

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#! /usr/bin/env node
22
const {colorGenerator, makeVariables} = require ('../generator');
3-
const {Coxy} = require ('../dist/coxy');
3+
const {Cono} = require ('../dist/cono');
44
const chalk = require ('chalk');
55
require ('./intro') ();
66
console.log ();
77
let {argv} = require ('yargs')
8-
.scriptName ('coxy')
8+
.scriptName ('cono')
99
.command (
1010
'palette <name> [--blindness] [--json] [--greedy]',
11-
'Generate Harmonic Color Palettes from Coxy Color(s).',
11+
'Generate Harmonic Color Palettes from Cono Color(s).',
1212
yargs => {
1313
yargs.positional ('n', {
1414
alias: 'name',
15-
describe: "Color Name following Coxy's naming conventions.",
15+
describe: "Color Name following Cono's naming conventions.",
1616
demandOption: 'Color Name is required.',
1717
type: 'string',
1818
nargs: 1,
@@ -50,9 +50,9 @@ let {argv} = require ('yargs')
5050
let colorObject;
5151
if (greedy) {
5252
if (blindness === undefined) {
53-
colorObject = new Coxy ().withSubstring (name).chosenColors;
53+
colorObject = new Cono ().withSubstring (name).chosenColors;
5454
} else {
55-
colorObject = new Coxy ()
55+
colorObject = new Cono ()
5656
.withSubstring (name)
5757
.withColorBlindnesses (blindness).chosenColors;
5858
}
@@ -79,9 +79,9 @@ let {argv} = require ('yargs')
7979
}
8080
} else {
8181
if (blindness === undefined) {
82-
colorObject = new Coxy ().withColor (name).makePalette ().palette ();
82+
colorObject = new Cono ().withColor (name).makePalette ().palette ();
8383
} else {
84-
colorObject = new Coxy ()
84+
colorObject = new Cono ()
8585
.withColor (name)
8686
.withColorBlindness (blindness)
8787
.makePalette ()
@@ -103,7 +103,7 @@ let {argv} = require ('yargs')
103103
console.log (
104104
chalk.hex (value).bold ('████▍') +
105105
' ' +
106-
new Coxy ().findNearest (value).currentName +
106+
new Cono ().findNearest (value).currentName +
107107
` (${key})` +
108108
'\n' +
109109
chalk.hex (value).bold ('████▍ ') +
@@ -117,7 +117,7 @@ let {argv} = require ('yargs')
117117
console.log (
118118
chalk.hex (value).bold ('████▍') +
119119
' ' +
120-
new Coxy ().findNearest (value).currentName +
120+
new Cono ().findNearest (value).currentName +
121121
` (${key})` +
122122
'\n' +
123123
chalk.hex (value).bold ('████▍ ') +
@@ -131,7 +131,7 @@ let {argv} = require ('yargs')
131131
)
132132
.command (
133133
'nearest <hex> [--colorspace] [--blindness]',
134-
'Get the Closest Coxy Color Name for the given Hex Color.',
134+
'Get the Closest Cono Color Name for the given Hex Color.',
135135
yargs => {
136136
yargs.positional ('x', {
137137
alias: 'hex',
@@ -167,9 +167,9 @@ let {argv} = require ('yargs')
167167
const {x, colorspace, blindness} = argv;
168168
let namedColor, hex, name;
169169
if (blindness === undefined) {
170-
namedColor = new Coxy ().findNearest (x);
170+
namedColor = new Cono ().findNearest (x);
171171
} else {
172-
namedColor = new Coxy ().findNearest (x).withColorBlindness (blindness);
172+
namedColor = new Cono ().findNearest (x).withColorBlindness (blindness);
173173
}
174174
name = namedColor.currentName;
175175
hex = namedColor.currentColor.substring (1).toUpperCase ();
@@ -214,11 +214,11 @@ let {argv} = require ('yargs')
214214
)
215215
.command (
216216
'color <name> [--colorspace] [--blindness]',
217-
'Retrieve color information for given a Coxy Color Name.',
217+
'Retrieve color information for given a Cono Color Name.',
218218
yargs => {
219219
yargs.positional ('n', {
220220
alias: 'name',
221-
describe: "Color Name following Coxy's naming conventions.",
221+
describe: "Color Name following Cono's naming conventions.",
222222
demandOption: 'Color Name is required.',
223223
type: 'string',
224224
nargs: 1,
@@ -250,9 +250,9 @@ let {argv} = require ('yargs')
250250
let {name, colorspace, blindness} = argv;
251251
let namedColor, hex;
252252
if (blindness === undefined) {
253-
namedColor = new Coxy ().withColor (name);
253+
namedColor = new Cono ().withColor (name);
254254
} else {
255-
namedColor = new Coxy ()
255+
namedColor = new Cono ()
256256
.withColor (name)
257257
.withColorBlindness (blindness);
258258
}
@@ -301,7 +301,7 @@ let {argv} = require ('yargs')
301301
)
302302
.command (
303303
'run <generator> [--language]',
304-
'Run generators builtin with Coxy.',
304+
'Run generators builtin with Cono.',
305305
yargs => {
306306
yargs.positional ('g', {
307307
alias: ['gen', 'generator'],

demo/scss/demo.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
@import "./style/coxy";
1+
@import "./style/cono";
22

33
.example {
4-
color: coxy("palest mild greenish red",0.4);
4+
color: cono("palest mild greenish red",0.4);
55
@include background-color("blackish vivid reddish purple")
66
}
77
@include generate-classes-for("warmest vivid bluish green",0.25)

dist/coxy.js dist/cono.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)