(mut self, color: impl Into<Color32>)
| 83 | /// Set the background fill color for the span. |
| 84 | #[inline] |
| 85 | pub fn fill(mut self, color: impl Into<Color32>) -> Self { |
| 86 | self.fill = color.into(); |
| 87 | self |
| 88 | } |
| 89 | |
| 90 | /// Set the stroke used for both span borders. |
| 91 | #[inline] |