├── .gitignore ├── LICENSE ├── README.md ├── doc ├── example.png └── info.png ├── project.clj ├── src └── clojure │ └── term │ └── colors.clj └── test └── clojure └── term └── colors_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/README.md -------------------------------------------------------------------------------- /doc/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/doc/example.png -------------------------------------------------------------------------------- /doc/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/doc/info.png -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/project.clj -------------------------------------------------------------------------------- /src/clojure/term/colors.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/src/clojure/term/colors.clj -------------------------------------------------------------------------------- /test/clojure/term/colors_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trhura/clojure-term-colors/HEAD/test/clojure/term/colors_test.clj --------------------------------------------------------------------------------