# File lib/scruffy/components/background.rb, line 4
      def draw(svg, bounds, options={})
        fill = "#EEEEEE"
        case options[:theme].background
        when Symbol, String
          fill = options[:theme].background.to_s
        when Array
          fill = "url(#BackgroundGradient)"
          svg.defs {
            svg.linearGradient(:id=>'BackgroundGradient', :x1 => '0%', :y1 => '0%', :x2 => '0%', :y2 => '100%') {
              svg.stop(:offset => '5%', 'stop-color' => options[:theme].background[0])
              svg.stop(:offset => '95%', 'stop-color' => options[:theme].background[1])
            }
          }
        end
        
        # Render background (maybe)
        svg.rect(:width => bounds[:width], :height => bounds[:height], :x => "0", :y => "0", :fill => fill) unless fill.nil?
      end