Skip to content

Commit

Permalink
one more palette update and update card text color
Browse files Browse the repository at this point in the history
  • Loading branch information
YetAnotherJonWilson committed Oct 28, 2023
1 parent b2a2615 commit 5cc3970
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/components/TypeCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ export default async function TypeCards() {
{types.map((type) => (
<div className="flex basis-1/3 mb-10" key={type.type}>
<div className="w-4/5 h-40 border-solid border-1 rounded-md shadow-lg">
<div className="h-16 bg-accent5-600 rounded-t-md">
<div className="h-16 bg-accent5-700 rounded-t-md">
<div className="text-lg text-white flex justify-center px-2 pt-1">
{type.type}
</div>
</div>
<p className="text-accent3-900 text-md p-2">{type.description}</p>
<p className="text-accent5-900 text-md p-2">{type.description}</p>
</div>
</div>
))}
Expand Down
3 changes: 2 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ module.exports = {
900: 'HSL(90, 40%, 40%)',
},
accent5: {
600: 'HSL(178, 93%, 21%)',
700: 'HSL(178, 93%, 21%)',
900: 'HSL(178, 93%, 11%)',
},
},
textShadow: {
Expand Down

0 comments on commit 5cc3970

Please sign in to comment.