From f8925cfb4f4d1aadeb170d95b8b6cf658219bce8 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Thu, 20 Jun 2024 16:44:49 -0400 Subject: [PATCH] review: derive global font from helix --- app/src/atoms/GlobalStyle/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/atoms/GlobalStyle/index.ts b/app/src/atoms/GlobalStyle/index.ts index 47cf6bfcfcc2..069f28eecbcf 100644 --- a/app/src/atoms/GlobalStyle/index.ts +++ b/app/src/atoms/GlobalStyle/index.ts @@ -1,5 +1,5 @@ import { createGlobalStyle } from 'styled-components' -import { COLORS } from '@opentrons/components' +import { COLORS, PRODUCT } from '@opentrons/components' import 'typeface-open-sans' import '@fontsource/dejavu-sans' import '@fontsource/public-sans' @@ -15,7 +15,7 @@ export const GlobalStyle = createGlobalStyle<{}>` box-sizing: border-box; margin: 0; padding: 0; - font-family: 'Public Sans', 'DejaVu Sans', sans-serif; + font-family: ${PRODUCT.TYPOGRAPHY.fontFamily}, 'DejaVu Sans', sans-serif; } html,