Skip to content

Commit

Permalink
Showing 5 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changeset/warm-hornets-protect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"wowds-tokens": patch
"wowds-theme": patch
---

body0를 추가합니다.
1 change: 1 addition & 0 deletions apps/wow-docs/styled-system/types/prop-type.d.ts
Original file line number Diff line number Diff line change
@@ -667,6 +667,7 @@ export interface UtilityValues {
| "h1"
| "h2"
| "h3"
| "body0"
| "body1"
| "body2"
| "body3"
3 changes: 3 additions & 0 deletions packages/wow-theme/src/tokens/typography.ts
Original file line number Diff line number Diff line change
@@ -17,6 +17,9 @@ export const textStyles = defineTextStyles({
h3: {
value: typography.h3,
},
body0: {
value: typography.body0,
},
body1: {
value: typography.body1,
},
7 changes: 7 additions & 0 deletions packages/wow-tokens/src/typography.ts
Original file line number Diff line number Diff line change
@@ -33,6 +33,13 @@ export const h3 = {
letterSpacing: "-0.01rem",
};

export const body0 = {
fontSize: "1.125rem",
lineHeight: "160%",
fontWeight: 500,
letterSpacing: "-0.01125rem",
};

export const body1 = {
fontSize: "1rem",
lineHeight: "160%",
1 change: 1 addition & 0 deletions packages/wow-ui/styled-system/types/prop-type.d.ts
Original file line number Diff line number Diff line change
@@ -667,6 +667,7 @@ export interface UtilityValues {
| "h1"
| "h2"
| "h3"
| "body0"
| "body1"
| "body2"
| "body3"

0 comments on commit 9024439

Please sign in to comment.