public
Description: Sass color scheme generator
Homepage: http://www.elctech.com/projects/instant-sass-color-palettes-with-sassafras
Clone URL: git://github.com/teejayvanslyke/sassafras.git
Tue Nov 17 10:54:11 -0800 2009
commit  9b4f5d07479072b4291c4773beb6c99e651eefc9
tree    51920429b2117fc93d234e866a9cf8add92061c9
parent  c183d3c640ffeccf8900ee0fe0a02daf9b753a1e
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 Tue Nov 17 10:54:11 -0800 2009 Added spec task to Rakefile. [teejayvanslyke]
file VERSION Tue Nov 17 10:51:54 -0800 2009 Version bump to 0.2.0 [teejayvanslyke]
directory bin/ Wed Dec 17 21:16:15 -0800 2008 again, trying to fix gem error [T.J. VanSlyke]
directory examples/ Mon Dec 15 00:52:07 -0800 2008 fixed readme [T.J. VanSlyke]
directory lib/ Thu Jan 22 14:12:17 -0800 2009 Added ability to generate themes from a hex base. [robincurry]
file sassafras.gemspec Tue Nov 17 10:52:01 -0800 2009 Jewelerified. [teejayvanslyke]
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/ Thu Jan 22 14:12:17 -0800 2009 Added ability to generate themes from a hex base. [robincurry]
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.