wip: phrase_get

This commit is contained in:
🪞👃🪞 2024-10-12 07:29:09 +03:00
parent 60c129d868
commit f8581a866c
3 changed files with 16 additions and 9 deletions

View file

@ -39,8 +39,8 @@ tui_style!(STYLE_VALUE =
pub fn random_okhsl () -> Okhsl<f32> {
let mut rng = thread_rng();
UniformOkhsl::new(
Okhsl::new(-180.0, 0.01, 0.05),
Okhsl::new( 180.0, 0.9, 0.5),
Okhsl::new(-180.0, 0.01, 0.1),
Okhsl::new( 180.0, 0.9, 0.5),
).sample(&mut rng)
}