diff --git a/index.html b/index.html index 2929eed..98ca757 100644 --- a/index.html +++ b/index.html @@ -56,6 +56,12 @@ +
+ FFT Spectrum + Peak Hold + Max Peaks + Cutoff +
Live Peak
diff --git a/style.css b/style.css index ff32dca..c78654f 100644 --- a/style.css +++ b/style.css @@ -190,6 +190,33 @@ section h2 { } #spectrumChart { height: 360px; } +.legend { + display: flex; + gap: 16px; + flex-wrap: wrap; + justify-content: center; + margin-top: 10px; +} +.legend-item { + display: flex; + align-items: center; + gap: 6px; + font-size: 11px; + color: var(--fg2); + font-family: var(--font); +} +.legend-swatch { + display: inline-block; + width: 12px; + height: 3px; + border-radius: 1px; +} +.legend-swatch-dashed { + width: 12px; + height: 0; + border-top: 2px dashed; +} + .player-controls { display: flex; align-items: center;