adobe-swatch-exchange alternatives and similar packages
Based on the "Web" category.
Alternatively, view adobe-swatch-exchange alternatives based on common mentions on social networks and blogs.
-
swagger-petstore
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
haskell-bitmex-rest
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
servant
Servat is a Haskell DSL for describing, serving, querying, mocking, documenting web applications and more! -
neuron
Future-proof note-taking and publishing based on Zettelkasten (superseded by Emanote: https://github.com/srid/emanote) -
tagsoup
Haskell library for parsing and extracting information from (possibly malformed) HTML/XML documents -
keera-hails-reactive-htmldom
Keera Hails: Haskell on Rails - Reactive Programming Framework for Interactive Haskell applications -
ghcjs-base
base library for GHCJS for JavaScript interaction and marshalling, used by higher level libraries like JSC -
ghcjs-dom
Make Document Object Model (DOM) apps that run in any browser and natively using WebKitGtk
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of adobe-swatch-exchange or a related project?
README
Adobe® Swatch Exchange (ASE) is a file format created by Adobe® that allows users to easily share swatches. It is supported by many of the tools in the Adobe Creative Suite®.
Users with accounts on http://kuler.adobe.com/ can also download swatches in the ASE format.
This repository provides three things:
a data type and
Binary
instance for parsing and generating ASE filesa function for generating CSS from an ASE data type
an executable 'ase2css' which parses a .ase file and generates a .css file
For each ColorEntry
found in the .ase
file, a pair of CSS rules are generated which look a bit like:
/* Generated from "6 pm.ase" using ase2css */
*.fg-color-ase-1 {
color : #5c6c59 }
*.bg-color-ase-1 {
background-color : #5c6c59 }
the suffix -n is assigned in the order the colors appeared in the .ase file.
The .ASE format supports 4 color modes, RGB, CYMK, LAB, and Gray. The
Binary
instance supports all four modes, but the ase2css
conversion function only supports RGB
at this time.
This application is written in Haskell. If you are a Haskell user this is great news! If you do not already have Haskell installed, it will be a bit of a chore to install and build this package. Sorry there are no binaries available!
If you want to try to build this package you will need to:
1. install the Haskell Platform package available from http://www.haskell.org/platform/
2. run `cabal update`
3. run `cabal install ase2css`