jpd236 / kotwords

Collection of crossword puzzle file format converters and other utilities, written in Kotlin.
Apache License 2.0
25 stars 6 forks source link

Make "empty" cells instead of background-color='#FFFFFF' for acrostics #31

Closed boisvert42 closed 2 years ago

boisvert42 commented 2 years ago

I'm experimenting with dark mode for my solver. It would be nice not to hard-code the background color for the cells that are not part of the solution, but to make them "empty" so the software can decide what color to make them.

jpd236 commented 2 years ago

Done. In addition to removing the background color, I had to change the type from BLOCK to VOID in order to prevent them from showing up as black squares in XWord 0.7.0.

boisvert42 commented 2 years ago

oh, yes, that's what I meant by "empty." thanks!