···11disallowed-methods = [
22- { path = "palette::rgb::Rgb::new", reason = "construct Color via theme tokens; raw palette colour bypasses the bone-ui::theme boundary" },
33- { path = "palette::Oklch::new", reason = "construct Color via theme tokens; raw palette colour bypasses the bone-ui::theme boundary" },
22+ { path = "palette::rgb::Rgb::new", reason = "construct Color via theme tokens; raw palette color bypasses the bone-ui::theme boundary" },
33+ { path = "palette::Oklch::new", reason = "construct Color via theme tokens; raw palette color bypasses the bone-ui::theme boundary" },
44]
···654654 }
655655656656 #[test]
657657- fn donut_glyph_centre_stays_outside() {
657657+ fn donut_glyph_center_stays_outside() {
658658 let mut atlas = SdfAtlas::new(small_params());
659659 let key = GlyphAtlasKey::new(FontFace::Sans, glyph_for(FontFace::Sans, 'O'));
660660 let entry = ensure_ok(&mut atlas, key);
···664664 let value = atlas.pixels()[(cy as usize) * (extent as usize) + cx as usize];
665665 assert!(
666666 !SdfPixel(value).is_inside(),
667667- "centre of O lies inside the donut hole, must be outside fill, raw={value}",
667667+ "center of O lies inside the donut hole, must be outside fill, raw={value}",
668668 );
669669 }
670670