feat: change primary font to Open Sans

This commit is contained in:
Jordan Knott
2021-04-30 16:33:38 -05:00
parent f45e359402
commit bd34f4b3ad
15 changed files with 13 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -17,7 +17,7 @@ const colors = {
export const base = {
...colors,
fontFamily: "'Droid Sans', sans-serif",
fontFamily: "'Open Sans', sans-serif",
fontFamilyMono: "'SFMono-Regular',Consolas,'Liberation Mono', Menlo, Courier,monospace",
fontWeight: 400,
zIndex: 10000,

View File

@ -27,10 +27,10 @@ export const color = {
};
export const font = {
regular: 'font-family: "Droid Sans", Roboto, sans-serif; font-weight: normal;',
regular: 'font-family: "Open Sans", Roboto, sans-serif; font-weight: normal;',
size: (size: number) => `font-size: ${size}px;`,
bold: 'font-family: "Droid Sans", Roboto, sans-serif; font-weight: normal;',
medium: 'font-family: "Droid Sans", Roboto, sans-serif; font-weight: normal;',
bold: 'font-family: "Open Sans", Roboto, sans-serif; font-weight: normal;',
medium: 'font-family: "Open Sans", Roboto, sans-serif; font-weight: normal;',
};
export const mixin = {