Skip to content

Commit aba4db2

Browse files
fix: use green color instead of teal
1 parent de3a82f commit aba4db2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Greeting/Greeting.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export type Props = {
99
}
1010

1111
export const Component: React.FC<Props> = (props) => (
12-
<h1 className="text-5xl text-center text-accent-1">
13-
Hello, <span className="text-teal-600">{props.target}</span>
12+
<h1 className="text-5xl text-center">
13+
Hello, <span className="text-green-600">{props.target}</span>
1414
</h1>
1515
)
1616

0 commit comments

Comments
 (0)