-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardizes fonts and colors, refactors files to use the new standard, and adds color highlighting to tailwind config.
- Loading branch information
Showing
9 changed files
with
173 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Plus_Jakarta_Sans, Atkinson_Hyperlegible } from "next/font/google"; | ||
|
||
// This configures the Next.js Font for Open Sans | ||
// We then export a variable and class name to be used | ||
// within Tailwind (tailwind.config.ts) and Storybook (preview.js) | ||
export const PLUS_JAKARTA_SANS = Plus_Jakarta_Sans({ | ||
weight: ["400", "500", "600", "700"], | ||
display: "fallback", | ||
subsets: ["latin"], | ||
variable: "--font-jakarta", | ||
}); | ||
|
||
// This configures the Next.js Font for IBM Plex Mono | ||
// We then export a variable and class name to be used | ||
// within Tailwind (tailwind.config.ts) and Storybook (preview.js) | ||
export const ATKINSON_HYPERLEGIBLE = Atkinson_Hyperlegible({ | ||
weight: ["400", "700"], | ||
subsets: ["latin"], | ||
variable: "--font-atkinson", | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters