From 7015f54b519aa3a37dc7ecc2754bfded82439c07 Mon Sep 17 00:00:00 2001 From: SavinSA Date: Sun, 21 Apr 2024 23:48:52 +0300 Subject: [PATCH] =?UTF-8?q?svg:=20=D0=BD=D0=B5=D0=B7=D0=BD=D0=B0=D1=87?= =?UTF-8?q?=D0=B8=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D1=8B=D0=B5=20=D0=B8=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- svg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svg.cpp b/svg.cpp index c57a5f8..fa125ef 100644 --- a/svg.cpp +++ b/svg.cpp @@ -53,7 +53,7 @@ show_histogram_svg(const vector& bins) { for (double bin : bins) { const double bin_width = MAX_WIDTH * ((BLOCK_WIDTH * bin) / max_count); svg_text(TEXT_LEFT, top + TEXT_BASELINE, to_string(bin)); - svg_rect(TEXT_WIDTH, top, bin_width, BIN_HEIGHT, "blue", "#aaffaa"); + svg_rect(TEXT_WIDTH, top, bin_width, BIN_HEIGHT, "green", "yellow"); top += BIN_HEIGHT; } svg_end();