├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── bower.json ├── example ├── button │ ├── index.html │ ├── style.css │ └── style.scss └── puff │ ├── index.html │ ├── style.css │ └── style.scss ├── lib └── sass-color-helpers.rb ├── package.json ├── sache.json ├── sass-color-helpers.gemspec ├── stylesheets ├── _color-helpers.scss └── color-helpers │ ├── _alpha-pick.scss │ ├── _contrast.scss │ ├── _hsv-hsl.scss │ └── _math.scss └── tests ├── specs.scss └── specs ├── hsl-hsv.scss └── math.scss /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [voxpelli] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | /node_modules 3 | /tests/results.css 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/bower.json -------------------------------------------------------------------------------- /example/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/example/button/index.html -------------------------------------------------------------------------------- /example/button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/example/button/style.css -------------------------------------------------------------------------------- /example/button/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/example/button/style.scss -------------------------------------------------------------------------------- /example/puff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/example/puff/index.html -------------------------------------------------------------------------------- /example/puff/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/example/puff/style.css -------------------------------------------------------------------------------- /example/puff/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/example/puff/style.scss -------------------------------------------------------------------------------- /lib/sass-color-helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/lib/sass-color-helpers.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/package.json -------------------------------------------------------------------------------- /sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/sache.json -------------------------------------------------------------------------------- /sass-color-helpers.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/sass-color-helpers.gemspec -------------------------------------------------------------------------------- /stylesheets/_color-helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/stylesheets/_color-helpers.scss -------------------------------------------------------------------------------- /stylesheets/color-helpers/_alpha-pick.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/stylesheets/color-helpers/_alpha-pick.scss -------------------------------------------------------------------------------- /stylesheets/color-helpers/_contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/stylesheets/color-helpers/_contrast.scss -------------------------------------------------------------------------------- /stylesheets/color-helpers/_hsv-hsl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/stylesheets/color-helpers/_hsv-hsl.scss -------------------------------------------------------------------------------- /stylesheets/color-helpers/_math.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/stylesheets/color-helpers/_math.scss -------------------------------------------------------------------------------- /tests/specs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/tests/specs.scss -------------------------------------------------------------------------------- /tests/specs/hsl-hsv.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/tests/specs/hsl-hsv.scss -------------------------------------------------------------------------------- /tests/specs/math.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voxpelli/sass-color-helpers/HEAD/tests/specs/math.scss --------------------------------------------------------------------------------