Skip to content

Commit

Permalink
tone it down some more
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Dec 12, 2024
1 parent 2e8032a commit 57be9b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ const MAX_LEARNING_NANOS: u64 = 10_000_000_000; // 10 seconds
const MIN_TICK: f32 = -60.0;
/// The maximum decibel value that the meters display
const MAX_TICK: f32 = 0.0;
const GLOW_SIZE: vg::Point3 = vg::Point3::new(0.0, 0.0, 21.0);
const GLOW_SIZE: vg::Point3 = vg::Point3::new(0.0, 0.0, 20.0);
const LIGHT_POS: vg::Point3 = vg::Point3::new(0.0, 0.0, 0.0); // light position only matters for the part I'm not drawing
const SPOT_COLOR: Color = Color::rgba(0, 0, 0, 0); // don't draw this
const PINK_GLOW_ALPHA: u8 = 65;
const PINK_GLOW_ALPHA: u8 = 57;
const YELLOW_GLOW_ALPHA: u8 = 50;
const BLUE_GLOW_ALPHA: u8 = 74;
const BLUE_GLOW_ALPHA: u8 = 71;

// warning still there. ¯\_(ツ)_/¯
// seems like there shouldn't be a warning in the first place
Expand Down
5 changes: 1 addition & 4 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
color: #e0ce91;
font-size: 19;
font-family: 'Noto Sans';
/*
* NOTE: vizia's font rendering looks way too dark and thick. Going one font
* weight lower seems to compensate for this.
*/
font-weight: 200;
}

Expand Down Expand Up @@ -48,6 +44,7 @@ param-slider:hover {

param-slider .fill {
background-color: #5879af;
/* shadow: 0px 0px 9px #5879afbf; */
}
/* param-slider .fill--modulation { */
/* background-color: #a4eafc69; */
Expand Down

0 comments on commit 57be9b1

Please sign in to comment.