added Montserrat-Regular.ttf to fix boldness on mac, closes #3094

This commit is contained in:
zadam 2022-09-04 16:50:45 +02:00
parent 261f1f0bf2
commit e8b8198eb8
4 changed files with 15 additions and 8 deletions

Binary file not shown.

View File

@ -1,6 +1,13 @@
@font-face { @font-face {
font-family: MontserratLight; font-family: Montserrat;
src: url(../fonts/Montserrat-Light.ttf); src: url(../fonts/Montserrat-Light.ttf);
font-weight: normal;
}
@font-face {
font-family: Montserrat;
src: url(../fonts/Montserrat-Regular.ttf);
font-weight: bold;
} }
@font-face { @font-face {

View File

@ -1,13 +1,13 @@
:root { :root {
--theme-style: dark; --theme-style: dark;
--main-font-family: MontserratLight; --main-font-family: Montserrat;
--main-font-size: normal; --main-font-size: normal;
--tree-font-family: MontserratLight; --tree-font-family: Montserrat;
--tree-font-size: normal; --tree-font-size: normal;
--detail-font-family: MontserratLight; --detail-font-family: Montserrat;
--detail-font-size: normal; --detail-font-size: normal;
--monospace-font-family: JetBrainsLight; --monospace-font-family: JetBrainsLight;

View File

@ -5,13 +5,13 @@ html {
/* either light or dark, colored theme with darker tones are also dark, used e.g. for note map node colors */ /* either light or dark, colored theme with darker tones are also dark, used e.g. for note map node colors */
--theme-style: light; --theme-style: light;
--main-font-family: MontserratLight; --main-font-family: Montserrat;
--main-font-size: normal; --main-font-size: normal;
--tree-font-family: MontserratLight; --tree-font-family: Montserrat;
--tree-font-size: normal; --tree-font-size: normal;
--detail-font-family: MontserratLight; --detail-font-family: Montserrat;
--detail-font-size: normal; --detail-font-size: normal;
--monospace-font-family: JetBrainsLight; --monospace-font-family: JetBrainsLight;
@ -73,4 +73,4 @@ html {
--link-color: blue; --link-color: blue;
--mermaid-theme: default; --mermaid-theme: default;
} }