Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sass-softlight

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sass-softlight

  • 0.0.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Sass::Softlight

SassScript extension to bring the math behind Photoshop's powerful softlight gradient blending mode to Sass, which eliminates the need for manually making softlight gradient backgrounds.

Installation

Add this line to your application's Gemfile:

gem 'sass-softlight'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install sass-softlight

Usage

The script extends Sass's default script functions so you can make a method call to softlight() in your .sass or .scss files as you would with other Sass functions:

	background-image: -webkit-linear-gradient( softlight( $color1, $color2 ), softlight( $color1, $color2 ) )

The softlight method takes to arguments: the source color and the canvas color (in that order). Both colors must be Sass Color objects.

If you want to use the gradient blending mode as it appears in Photoshop then use one color and mix it with white and black using the softlight method:

	background-image: -webkit-linear-gradient( softlight( white, $color2 ), softlight( black, $color2 ) )

NOTE: Gem installing is currently not working. To work around this issue, download sass-softlight.rb and place it in your Rails load path (your_app_dir/lib/ or your_app_dir/config/initializers/). Stop your server and reset your application's cache:

	$ bundle exex rake tmp:clear

Restart your server. The softlight method should compile in the Sass just fine now.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b feature/my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin feature/my-new-feature)
  5. Create new Pull Request

Credits

Written by Albert Tholen.

Sponsored by Lua Technologies, Inc.

Sources

FAQs

Package last updated on 01 Aug 2012

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc