Skip to content

Commit 9e704ab

Browse files
authored
Merge pull request #12403 from ethereum/fixTextColor
[Test] - Remove text 300 from markdown docs
2 parents 2c107a7 + 88f0dd7 commit 9e704ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/MdComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export const Pre = (props: ChildOnlyProp) => (
133133
)
134134

135135
export const Paragraph = (props: ChildOnlyProp) => (
136-
<Text color="text300" mt={8} mb={4} {...props} />
136+
<Text mt={8} mb={4} {...props} />
137137
)
138138

139139
export const HR = () => (

src/layouts/Docs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const OrderedList = (props: ListProps) => (
139139
)
140140

141141
const ListItem = (props: ListItemProps) => (
142-
<ChakraListItem color="text300" {...props} />
142+
<ChakraListItem {...props} />
143143
)
144144

145145
// Apply styles for classes within markdown here

0 commit comments

Comments
 (0)