adds legend tooltips

This commit is contained in:
2025-01-03 00:20:56 -05:00
parent 623c394446
commit 35603c98a4
8 changed files with 343 additions and 79 deletions

View File

@@ -1,3 +1,5 @@
@use 'sass:color';
$gray-1: oklch(90% 0 0);
$gray-2: oklch(80% 0 0);
$gray-3: oklch(70% 0 0);
@@ -24,6 +26,8 @@ $magenta-2: oklch(75% 0.2 330);
$text-color: $gray-1;
$background-color: $gray-7;
$light-background-color: color.adjust($background-color, $lightness: 5%);
$dark-background-color: color.adjust($background-color, $lightness: -5%);
$time-tick: $gray-1;
$grid-line: $gray-1;
@@ -31,6 +35,7 @@ $major-tick: $gray-4;
$minor-tick: $gray-5;
$text-font: Helvetica, sans-serif;
$large-text-size: 20px;
$normal-text-size: 16px;
$small-text-size: 12px;