Skip to content

Commit 177b616

Browse files
committed
initial
0 parents  commit 177b616

File tree

6 files changed

+45
-0
lines changed

6 files changed

+45
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
components
2+
build

History.md

Whitespace-only changes.

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
build: components index.js
3+
@component build --dev
4+
5+
components: component.json
6+
@component install --dev
7+
8+
clean:
9+
rm -fr build components template.js
10+
11+
.PHONY: clean

Readme.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
# color
3+
4+
A color object that knows about different schemas. Stores as rgb internally.
5+
6+
## Installation
7+
8+
Install with [component(1)](http://component.io):
9+
10+
$ component install jazzui/color
11+
12+
## API
13+
14+
15+
16+
## License
17+
18+
MIT

component.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "color",
3+
"repo": "jazzui/color",
4+
"description": "A color object that knows about different schemas. Stores as rgb internally.",
5+
"version": "0.0.1",
6+
"keywords": [],
7+
"dependencies": {},
8+
"development": {},
9+
"license": "MIT",
10+
"main": "index.js",
11+
"scripts": [
12+
"index.js"
13+
]
14+
}

index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)