Browse Source

added to npm

master
arnaucode 6 years ago
parent
commit
6dfc63506d
4 changed files with 43 additions and 3 deletions
  1. +12
    -2
      README.md
  2. +6
    -0
      colors.css
  3. +0
    -1
      colors.min.css
  4. +25
    -0
      package.json

+ 12
- 2
README.md

@ -1,11 +1,21 @@
# cssMaterialColors
## Install
## Install with npm
```
npm install --save cssMaterialColors
```
Add to the index.html:
```html
<link href="node_modules/cssMaterialColors/colors.css" rel="stylesheet">
```
## Install with bower
```
bower install --save cssMaterialColors
```
Add to the index.html:
```html
<link href="bower_components/cssMaterialColors/colors.min.css" rel="stylesheet">
<link href="bower_components/cssMaterialColors/colors.css" rel="stylesheet">
```

+ 6
- 0
colors.css

@ -341,6 +341,12 @@
color: #4DD0E1!important;
}
.ct_cyan500{
color: #00BCD4!important;
}
.c_cyanG500to300{
background: #00BCD4!important;
background: -moz-linear-gradient(left, #00BCD4 0%, #4DD0E1 100%)!important;

+ 0
- 1
colors.min.css
File diff suppressed because it is too large
View File


+ 25
- 0
package.json

@ -0,0 +1,25 @@
{
"name": "cssmaterialcolors",
"version": "1.0.0",
"description": "## Install ``` bower install --save cssMaterialColors ```",
"main": "colors.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnaucode/cssMaterialColors.git"
},
"keywords": [
"css",
"material",
"colors",
"cssmaterialcolors"
],
"author": "arnaucode",
"license": "MIT",
"bugs": {
"url": "https://github.com/arnaucode/cssMaterialColors/issues"
},
"homepage": "https://github.com/arnaucode/cssMaterialColors#readme"
}

Loading…
Cancel
Save