Skip to content

Commit

Permalink
Merge pull request #21916 from Yoast/d-claassen/table-cell-color
Browse files Browse the repository at this point in the history
Update text color of table cells
  • Loading branch information
igorschoester authored Dec 18, 2024
2 parents 2355785 + 5ff4d01 commit 66f0345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui-library/src/elements/table/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const rowClassNameMap = {
* @returns {JSX.Element} The element.
*/
const Cell = ( { children, className = "", ...props } ) => (
<td className={ classNames( "yst-table-cell yst-px-3 yst-py-4 yst-text-sm yst-text-slate-500", className ) } { ...props }>
<td className={ classNames( "yst-table-cell yst-px-3 yst-py-4 yst-text-sm yst-text-slate-600", className ) } { ...props }>
{ children }
</td>
);
Expand Down

0 comments on commit 66f0345

Please sign in to comment.