about summary refs log tree commit diff
path: root/src/alf
diff options
context:
space:
mode:
authorKuwa Lee <kuwalee1069@gmail.com>2024-06-19 02:47:38 +0800
committerGitHub <noreply@github.com>2024-06-19 02:47:38 +0800
commita6d49062e6d50b7c9a6c0d50c38fcfeb8f63e46f (patch)
tree65ef4f28c174d1da9c8f7085635b05b754e95746 /src/alf
parentfad73fe9281baee8409a65a10923749ec24dfd68 (diff)
parent35e54e24a0b08ce0f2e3389aeb4fb0f29778170e (diff)
downloadvoidsky-a6d49062e6d50b7c9a6c0d50c38fcfeb8f63e46f.tar.zst
Merge branch 'bluesky-social:main' into zh
Diffstat (limited to 'src/alf')
-rw-r--r--src/alf/atoms.ts3
-rw-r--r--src/alf/tokens.ts1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts
index 1ccb0460c..1dc2dfa7b 100644
--- a/src/alf/atoms.ts
+++ b/src/alf/atoms.ts
@@ -267,6 +267,9 @@ export const atoms = {
   font_bold: {
     fontWeight: tokens.fontWeight.bold,
   },
+  font_heavy: {
+    fontWeight: tokens.fontWeight.heavy,
+  },
   italic: {
     fontStyle: 'italic',
   },
diff --git a/src/alf/tokens.ts b/src/alf/tokens.ts
index 1bddd95d4..675844e29 100644
--- a/src/alf/tokens.ts
+++ b/src/alf/tokens.ts
@@ -118,6 +118,7 @@ export const fontWeight = {
   normal: '400',
   semibold: '500',
   bold: '600',
+  heavy: '700',
 } as const
 
 export const gradients = {