(theme: &Theme)
| 200 | } |
| 201 | |
| 202 | fn region_style(theme: &Theme) -> container::Style { |
| 203 | let palette = theme.extended_palette(); |
| 204 | container::Style { |
| 205 | background: Some(Color::from_rgba(0.2, 0.8, 0.55, 0.14).into()), |
| 206 | text_color: Some(palette.background.base.text.scale_alpha(0.65)), |
| 207 | border: border::rounded(4) |
| 208 | .width(1) |
| 209 | .color(Color::from_rgba(0.2, 0.8, 0.55, 0.45)), |
| 210 | ..container::Style::default() |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | fn annotation_style(theme: &Theme) -> container::Style { |
| 215 | let palette = theme.extended_palette(); |
nothing calls this directly
no outgoing calls
no test coverage detected