<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,6 @@
 == 1.3.X
 * added code to properly escape image tag URLs (mokolabs)
+* added themes support + 4 default themes (keynote, thirty7signals, pastel, greyscale) chart.line(:theme=&gt;:keynote) (jakehow)
 
 == 1.3.4
 * updated documentation and cleaned it up (mokolabs)</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -27,6 +27,8 @@ This gem supports the following types of charts:
   * pie
   * pie_3d
   * google meter
+  
+Googlecharts also supports graphical themes and you can easily load your own.
 
 To create a chart, simply require Gchart and call any of the existing type:
 
@@ -107,6 +109,47 @@ Another type of fill is stripes http://code.google.com/apis/chart/#linear_stripe
     Gchart.line(:bg =&gt; {:color =&gt; 'efefef', :type =&gt; 'stripes'})
     
 You can customize the amount of stripes, colors and width by changing the color value.
+
+
+Themes
+--------
+
+  Googlecharts comes with 4 themes: keynote, thirty7signals, pastel and greyscale. (ganked from [Gruff](http://github.com/topfunky/gruff/tree/master)
+
+
+    Gchart.line(
+                :theme =&gt; :keynote, 
+                :data =&gt; [[0,40,10,70,20],[41,10,80,50,40],[20,60,30,60,80],[5,23,35,10,56],[80,90,5,30,60]], 
+                :title =&gt; 'keynote'
+                )
+
+  * keynote
+
+    ![keynote](http://chart.apis.google.com/chart?chtt=keynote&amp;chco=6886B4,FDD84E,72AE6E,D1695E,8A6EAF,EFAA43&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo&amp;chf=c,s,FFFFFF|bg,s,000000)
+
+  * thirty7signals
+
+    ![37signals](http://chart.apis.google.com/chart?chtt=thirty7signals&amp;chco=FFF804,336699,339933,ff0000,cc99cc,cf5910&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo&amp;chf=bg,s,FFFFFF)
+
+  * pastel
+
+    ![pastel](http://chart.apis.google.com/chart?chtt=pastel&amp;chco=a9dada,aedaa9,daaea9,dadaa9,a9a9da&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo)
+
+  * greyscale
+
+    ![greyscale](http://chart.apis.google.com/chart?chtt=greyscale&amp;chco=282828,383838,686868,989898,c8c8c8,e8e8e8&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo)
+
+
+You can also use your own theme. Create a yml file using the same format as the themes located in lib/themes.yml
+
+Load your theme(s):
+
+      Chart::Theme.add_theme_file(&quot;#{File.dirname(__FILE__)}/fixtures/another_test_theme.yml&quot;)
+
+And use the standard method signature to use your own theme:
+
+      Gchart.line(:theme =&gt; :custom_theme, :data =&gt; [[0, 40, 10, 70, 20],[41, 10, 80, 50]], :title =&gt; 'greyscale')
+
     
     
 Legend &amp; Labels
@@ -242,4 +285,6 @@ People reported using this gem:
 
 ![http://img.skitch.com/20080627-n48j8pb2r7irsewfeh4yp3da12.jpg]
 
-* [http://feedflix.com/](http://feedflix.com/) [lifehacker article](http://lifehacker.com/395610/feedflix-creates-detailed-charts-from-your-netflix-use)
\ No newline at end of file
+* [http://feedflix.com/](http://feedflix.com/) [lifehacker article](http://lifehacker.com/395610/feedflix-creates-detailed-charts-from-your-netflix-use)
+
+* [California State University, Chico](http://www.csuchico.edu/)
\ No newline at end of file</diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -217,9 +217,54 @@ Gchart.scatter(:data =&gt; [[1, 2, 3, 4, 5], [1, 2, 3, 4 ,5], [5, 4, 3, 2, 1]])
 Supply a single label that will be what the arrow points to. It only supports a solid fill for the background.
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-Gchart.meter(:data =&gt; [70], :label =&gt; ['Flavor'])
+  Gchart.meter(:data =&gt; [70], :label =&gt; ['Flavor'])
 &lt;/pre&gt;
 
+
+*Chart themes*
+
+Googlecharts comes with 4 themes: keynote, thirty7signals, pastel and greyscale. (ganked from &quot;Gruff&quot;: http://github.com/topfunky/gruff/tree/master )
+
+&lt;pre syntax=&quot;ruby&quot;&gt;
+  Gchart.line(
+              :theme =&gt; :keynote, 
+              :data =&gt; [[0,40,10,70,20],[41,10,80,50,40],[20,60,30,60,80],[5,23,35,10,56],[80,90,5,30,60]], 
+              :title =&gt; 'keynote'
+              )
+&lt;/pre&gt;
+
+* keynote
+
+!http://chart.apis.google.com/chart?chtt=keynote&amp;chco=6886B4,FDD84E,72AE6E,D1695E,8A6EAF,EFAA43&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo&amp;chf=c,s,FFFFFF|bg,s,000000!
+
+* thirty7signals
+
+!http://chart.apis.google.com/chart?chtt=thirty7signals&amp;chco=FFF804,336699,339933,ff0000,cc99cc,cf5910&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo&amp;chf=bg,s,FFFFFF!
+
+* pastel
+
+!http://chart.apis.google.com/chart?chtt=pastel&amp;chco=a9dada,aedaa9,daaea9,dadaa9,a9a9da&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo!
+
+* greyscale
+
+!http://chart.apis.google.com/chart?chtt=greyscale&amp;chco=282828,383838,686868,989898,c8c8c8,e8e8e8&amp;chs=300x200&amp;cht=lc&amp;chd=s:AbGvN,bG2hb,NoUo2,DPXGl,29DUo!
+
+
+You can also use your own theme. Create a yml file using the same format as the themes located in lib/themes.yml
+
+Load your theme(s):
+
+&lt;pre syntax=&quot;ruby&quot;&gt;
+  Chart::Theme.add_theme_file(&quot;#{File.dirname(__FILE__)}/fixtures/another_test_theme.yml&quot;)
+&lt;/pre&gt;
+
+And use the standard method signature to use your own theme:
+
+&lt;pre syntax=&quot;ruby&quot;&gt;
+  Gchart.line(:theme =&gt; :custom_theme, :data =&gt; [[0, 40, 10, 70, 20],[41, 10, 80, 50]], :title =&gt; 'greyscale')
+&lt;/pre&gt;
+
+
 ---
 
 *set a chart title*
@@ -501,9 +546,13 @@ h2. People reported using this gem
   &lt;/div&gt;
   
   &lt;div&gt;
-    &lt;img  src=&quot;http://img.skitch.com/20080627-n48j8pb2r7irsewfeh4yp3da12.jpg&quot; alt=&quot;gumgum&quot;/&gt;&lt;br/&gt;
+    &lt;img  src=&quot;http://img.skitch.com/20080627-n48j8pb2r7irsewfeh4yp3da12.jpg&quot; alt=&quot;feedflix&quot;/&gt;&lt;br/&gt;
     &lt;li&gt;&lt;a href=&quot;http://feedflix.com/&quot;&gt; http://feedflix.com/&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
   &lt;/div&gt;
+  
+  &lt;div&gt;
+    &lt;li&gt;&lt;a href=&quot;http://www.csuchico.edu/&quot;&gt; California State University, Chico&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+  &lt;/div&gt;
 
 
 h2. License</diff>
      <filename>website/index.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c78d1785f3e94b4c3eaea8e63c0cca2b231dffab</id>
    </parent>
  </parents>
  <author>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </author>
  <url>http://github.com/mattetti/googlecharts/commit/64ea669922cebcc6557eebcab4063fdfb9569e78</url>
  <id>64ea669922cebcc6557eebcab4063fdfb9569e78</id>
  <committed-date>2008-07-03T01:54:55-07:00</committed-date>
  <authored-date>2008-07-03T01:54:55-07:00</authored-date>
  <message>merged in mokolabs fix + added some documentation about themes</message>
  <tree>e6ff19bd2a9c0672e0283c783f355d9071c74807</tree>
  <committer>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </committer>
</commit>
