diff --git a/apps/web/public/index.html b/apps/web/public/index.html index 420226abe..fd7020603 100644 --- a/apps/web/public/index.html +++ b/apps/web/public/index.html @@ -97,6 +97,12 @@ background-color: #f7f7f7; } + + +
diff --git a/apps/web/src/index.css b/apps/web/src/index.css index f104a7a0a..5b7f4677e 100644 --- a/apps/web/src/index.css +++ b/apps/web/src/index.css @@ -20,8 +20,8 @@ body, } * { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, - Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; + font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important; } @keyframes fadeUp { diff --git a/apps/web/src/theme/font/index.js b/apps/web/src/theme/font/index.js index 9eba6929d..a08a9bbd2 100644 --- a/apps/web/src/theme/font/index.js +++ b/apps/web/src/theme/font/index.js @@ -5,13 +5,14 @@ class FontFactory { return { fontSizes: new FontSizeFactory(scale), fontWeights: { + normal: 400, body: 400, heading: 700, - bold: 700, + bold: 600, }, fonts: { - body: `-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;`, - heading: `-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;`, + body: `Open Sans,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Oxygen-Sans,Ubuntu,Cantarell,sans-serif;`, + heading: `Open Sans,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Oxygen-Sans,Ubuntu,Cantarell,sans-serif;`, }, }; } diff --git a/apps/web/src/theme/variants/text.js b/apps/web/src/theme/variants/text.js index 4760c5ac8..5c058ad74 100644 --- a/apps/web/src/theme/variants/text.js +++ b/apps/web/src/theme/variants/text.js @@ -38,6 +38,7 @@ class Title { return { variant: "text.heading", fontSize: "title", + fontWeight: "bold", }; } } @@ -46,6 +47,7 @@ class Subtitle { return { variant: "text.heading", fontSize: "subtitle", + fontWeight: "bold", }; } }