From 38266eb4c1f7c653fb10dfe11947fbbc18c55479 Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Mon, 30 Nov 2015 10:18:35 -0500 Subject: [PATCH] Samples: less harsh blue on graph paper lines --- lib/squib/sample_helpers.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/squib/sample_helpers.rb b/lib/squib/sample_helpers.rb index b759f03..e76353b 100644 --- a/lib/squib/sample_helpers.rb +++ b/lib/squib/sample_helpers.rb @@ -8,8 +8,8 @@ module Squib # Draw graph paper for samples def draw_graph_paper(width, height) background color: 'white' - grid width: 50, height: 50, stroke_color: '#0066FF', stroke_width: 1.5 - grid width: 200, height: 200, stroke_color: '#0066FF', stroke_width: 3, x: 50, y: 50 + grid width: 50, height: 50, stroke_color: '#659ae9', stroke_width: 1.5 + grid width: 200, height: 200, stroke_color: '#659ae9', stroke_width: 3, x: 50, y: 50 (50..height).step(200) do |y| text str: "y=#{y}", x: 3, y: y - 18, font: 'Open Sans, Sans 10' end @@ -31,4 +31,4 @@ module Squib end -end \ No newline at end of file +end