Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

Hi! This is a very nice writing program and even though it's simple, there's a lot I like about it!

Unfortunately, my eyesight is not getting better and the small font size combined with the small laptop screen makes it difficult to see what's going on. I'd like to second the call for a way to change font size. Even if it's just in the config file it would be great to be able to bump it up easily.

Thanks again for making this available!

(+3)

Actually, for anyone interested, I have just discovered how to change font size. You can do it with the themes in %config.js.

Every theme in %config.js has a base section. You need to add a new setting to it. Here's what mine looks like now:

"base": {
    "background-color": "#214c80",
    "color": "#e6f0fc",
    "font-size": "18pt"
}, 

This gives me a nice comfortable reading size on my laptop. The "pt" means that the size is specified in points, but since this seems to work using web styles, you can probably also set pixels ("px") and so forth. This also means you can probably style other things about the text using web styles (CSS) too...

Note that if you want to have the same font size in all themes, you will have to copy that line to all of them.

Hope this helps!

Thank you very much for this!