robincurry / sassafras forked from teejayvanslyke/sassafras

Sass color scheme generator

This URL has Read+Write access

name age message
file .gitignore Tue Dec 16 15:51:38 -0800 2008 ignored pkg/, updated version and gemspec [T.J. VanSlyke]
file History.txt Sun Dec 14 16:58:45 -0800 2008 initial import [T.J. VanSlyke]
file License.txt Sun Dec 14 16:58:45 -0800 2008 initial import [T.J. VanSlyke]
file Manifest.txt Tue Dec 16 08:22:13 -0800 2008 hopefully finally fixed gemspec once and for al... [T.J. VanSlyke]
file PostInstall.txt Mon Dec 15 08:52:51 -0800 2008 changed post install [T.J. VanSlyke]
file README.txt Tue Dec 16 08:22:13 -0800 2008 hopefully finally fixed gemspec once and for al... [T.J. VanSlyke]
file Rakefile Loading commit data...
directory bin/
directory config/
directory examples/ Mon Dec 15 00:52:07 -0800 2008 fixed readme [T.J. VanSlyke]
directory lib/
file sassafras.gemspec
directory script/ Sun Dec 14 16:58:45 -0800 2008 initial import [T.J. VanSlyke]
file setup.rb Sun Dec 14 16:58:45 -0800 2008 initial import [T.J. VanSlyke]
directory spec/
directory tasks/ Sun Dec 14 21:31:56 -0800 2008 added examples [T.J. VanSlyke]
directory website/ Sun Dec 14 16:58:45 -0800 2008 initial import [T.J. VanSlyke]
README.txt
= sassafras

* http://www.elctech.com/projects/instant-sass-color-palettes-with-sassafras

== DESCRIPTION:

After spending hours copying and pasting hex values into my Sass stylesheets, 
I knew there had to be a better way.  Enter Sassafras, the Sass color scheme 
generator.

Sassafras will generate any of the following types of color schemes and create 
logically-named Sass variables for varying lightnesses:

* basic
* complementary
* analogous
* triadic
* split complementary
* rectangle
* square

== FEATURES/PROBLEMS:

== SYNOPSIS:

Generate basic variants of red:
    
    $ sassafras -b red

    # Generated by Sassafras
    # base
    !base_light = #ff8080
    !base_darkest = #1a0000
    !base_dark = #800000
    !base_darker = #4d0000
    !base_lightest = #ffe6e6
    !base_mid = #ff0000
    !base_lighter = #ffb3b3

Generate basic variants of red and green:

    $ sassafras -t complementary -b red

Sassafras can also generate an HTML reference sheet with color swatches:

    $ sassafras -t split_complementary -b blue -f html

For more information on the various types of color schemes supported by Sassafras, 
please see the color theory tutorial on which Sassafras was based at 
http://www.tigercolor.com/color-lab/color-theory/color-theory-intro.htm

== REQUIREMENTS:

* color-tools
* activesupport

== INSTALL:

Note:  Make sure you're using RubyGems >= 1.2.0.

    $ sudo gem sources -a http://gems.github.com
    $ sudo gem install teejayvanslyke-sassafras

== LICENSE:

(The MIT License)

Copyright (c) 2008 FIX

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.