diff options
author | Eric Bailey <git@esb.lol> | 2024-09-20 17:29:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 17:29:58 -0500 |
commit | 7e2456b906563464c8e43867e62f07df9109bc2b (patch) | |
tree | 8dfca319f8b96190b7e83eb9ba37b17c24a2cb46 /src/alf/tokens.ts | |
parent | 4161e233200cc1d111faef47f05881e44ab4e731 (diff) | |
download | voidsky-7e2456b906563464c8e43867e62f07df9109bc2b.tar.zst |
[Neue] Font weights (#5442)
* Align all font weights * Only load necessary fonts * Also comment out from hook
Diffstat (limited to 'src/alf/tokens.ts')
-rw-r--r-- | src/alf/tokens.ts | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/alf/tokens.ts b/src/alf/tokens.ts index d43d2b67d..3f30702e8 100644 --- a/src/alf/tokens.ts +++ b/src/alf/tokens.ts @@ -47,11 +47,16 @@ export const borderRadius = { full: 999, } as const +/** + * These correspond to Inter font files we actually load. + */ export const fontWeight = { - normal: '400', - semibold: '500', - bold: '600', - heavy: '700', + regular: '400', + // medium: '500', + semibold: '600', + // bold: '700', + extrabold: '800', + // black: '900', } as const export const gradients = { |