Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github.com/mrmrs/colors
View the project page at http://clrs.cc
A simple color palette for the web. Let's be honest, out of the box, the color strings that css provides aren't... the tops. This is a set of sass/less/stylus/css variables and css classes that can help fix that with just 647B of minified and gzipped css.
(Uncompressed is just 888B)
colors.css provides utilities to apply backgrounds, text-color, border colors for both html and svg elements.
.blue { color: $blue; }
.bg-blue { background-color: $blue; }
.border--blue { border-color: $blue; }
.fill-blue { fill: $blue; }
.stroke-blue { stroke: $blue; }
You can get the code a few different ways
Download a zip from this page
Clone / fork the repo through git
git clone git@github.com:mrmrs/colors.git
Install through npm
npm install --save-dev colors.css
Install the ruby gem
gem install clrs
Simply copy colors.css to your css directory and include the file like so in the head of your html document
<link rel="stylesheet" href="css/colors.css">
If you'd like to customize colors.css to your liking, you can edit the source in a variety of flavors. Colors uses gulp as a taskrunner. There are individual gulp tasks for each preprocessor* Each gulp task also comes with automatic vendor prefix support, csslint output, and livereload updates built in. It's pretty sweet.
First run
npm install -g gulp
Then
npm install
Once that is complete you can use any preprocessor like so
Recompile everything imported in ./sass/colors.scss to css/colors.css everytime a file in the ./sass directory is updated
gulp sass
Recompile everything imported in ./stylus/colors.styl to ./css/colors.css everytime a file in the ./stylus directory is updated
gulp stylus
Recompile myth/colors.css to css/colors.css everytime myth/colors.css is updated
gulp myth
If you would like to minify ./css/colors.css to .css/colors.min.css you can just run
gulp minify
colors/
├── README.md
├── bower.json
├── coffee
│ └── colors.coffee
├── css
│ ├── colors.css
│ └── colors.min.css
├── gulpfile.js
├── index.html
├── js
│ └── colors.js
├── less
│ ├── _skins.less
│ ├── _variables.less
│ └── colors.less
├── myth
│ └── colors.css
├── package.json
├── sass
│ ├── _skins.scss
│ ├── _variables.scss
│ └── colors.scss
├── site.css
└── stylus
├── colors.styl
├── skins.styl
└── variables.styl
The MIT License (MIT)
Copyright (c) 2015 @mrmrs
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.