From 120301de5f723af5f191727763d57b788b57d2b5 Mon Sep 17 00:00:00 2001 From: Greg Look Date: Sat, 7 Mar 2015 10:59:35 -0800 Subject: [PATCH] Remove set-color-scheme! from README since it no longer exists. --- README.md | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 5f9431f..c2520e5 100644 --- a/README.md +++ b/README.md @@ -119,25 +119,16 @@ convenience, or a map can be passed directly into Puget's print functions to override the defaults. Puget's colors are defined by the `:color-scheme` key, which maps syntax element -keywords to a vector of ANSI style keywords to apply. The `set-color-scheme!` -function offers a convenient way to change the colors by providing either -color/style argument pairs or a single map of colors to merge into the current -color scheme. +keywords to a vector of ANSI style keywords to apply. Some example elements and +their default colors: ```clojure -(puget/set-color-scheme! :nil [:bold :black]) -{:boolean [:green] - :class-delimiter [:blue] - :class-name [:bold :blue] - :delimiter [:bold :red] - :function-symbol [:bold :blue] - :keyword [:bold :yellow] - :nil [:bold :black] - :number [:cyan] - :string [:bold :magenta] - :character [:bold :magenta] - :symbol nil - :tag [:red]} +:boolean [:green] +:delimiter [:bold :red] +:keyword [:bold :yellow] +:number [:cyan] +:string [:bold :magenta] +:symbol nil ``` ## License