Thought this would be the relevant place to ask, does anyone know how to assign a colour to an Ifc hatch in CSS?
I've got the gist to change the colour for a solid hatch but not a patterned one:
Solid hatch (coloured :) ):
.PredefinedType-SOLIDRED { fill: red; stroke: red; stroke-linecap: 'round'; stroke-width: 0.35; fill-rule: evenodd; }
Comments
Thought this would be the relevant place to ask, does anyone know how to assign a colour to an Ifc hatch in CSS?
I've got the gist to change the colour for a solid hatch but not a patterned one:

Solid hatch (coloured :) ):
.PredefinedType-SOLIDRED { fill: red; stroke: red; stroke-linecap: 'round'; stroke-width: 0.35; fill-rule: evenodd; }
Patterned hatch (no colour :( )

.PredefinedType-REDHATCH { fill: url(#diagonal1); stroke: red; stroke-linecap: 'round'; stroke-width: 0.18; }
Does this video help?
https://www.dropbox.com/s/qr9x5wy4xa34i8i/2022-08-30_13-16-59_●_patterns.svg_-_VSCodium_VSCodium.mp4?dl=0
@theoryshaw thank you so much yes that's probably exactly what I needed
Working brilliantly thanks @theoryshaw!
