#Custom Font in BR

1 messages · Page 1 of 1 (latest)

worn dragon
#

It's feasible with the Custom CSS module.

worn dragon
#

I'm gonna test something and tell you if it works

worn dragon
#

@novel linden This code in Custom CSS should override the default Foundry Gridnik font definition:

/* Custom CSS */
@font-face {
  font-family: "Foundry Gridnik";
  src: url("worlds/my-world/path-to-my-custom-font.ttf");
}

Just replace the url(" xxxx "); above with the path to your custom font. It should be in your world folder.

#

In addition, if your custom font is license free, you can send it to me and I'll look if it's good enough to add it to the game system

#

If you don't want to use a custom font, here is another CSS code solution;

/* Custom CSS */
:root {
  --font-table: "Consolas", serif;
  --font-gridnik: "Consolas", serif;
}

You can change "Consolas" by any other font name in your computer. (preferably something available to your players' computers too)

novel linden