How do you set the wall thickness like in the readme image? #140
Replies: 1 comment 2 replies
|
That screenshot uses the normal 8-unit wall stroke. There was no separate wall-thickness setting in v1.2.5: Easy Floorplan does not assign a physical length to a canvas unit, so using 100 units for one metre is fine. The entire SVG is scaled from the configured canvas size to the card. That means the visible wall width is roughly If you just want thicker walls, v1.2.6 added a supported override up to 10. After updating and hard-refreshing Home Assistant, this works with card-mod: type: custom:easy-floorplan-card
card_mod:
style: |
ha-card {
--fp-skin-wall-width: 10;
}Keep it at 10 or below because larger strokes are not fully cleared by the door masks. The new |


That screenshot uses the normal 8-unit wall stroke. There was no separate wall-thickness setting in v1.2.5:
WALL_THICKNESSwas fixed at 8.Easy Floorplan does not assign a physical length to a canvas unit, so using 100 units for one metre is fine. The entire SVG is scaled from the configured canvas size to the card. That means the visible wall width is roughly
8 × rendered plan width / canvas widthpixels. The README example uses a 1000 × 600 virtual canvas, which is why the same stroke can look heavier there.If you just want thicker walls, v1.2.6 added a supported override up to 10. After updating and hard-refreshing Home Assistant, this works with card-mod: