Skip to content

Commit

Permalink
updating palette and card bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
YetAnotherJonWilson committed Oct 28, 2023
1 parent 6d877d7 commit b2a2615
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/TypeCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ 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-accent3-100 rounded-t-md">
<div className="text-lg flex justify-center px-2 pt-1">
<div className="h-16 bg-accent5-600 rounded-t-md">
<div className="text-lg text-white flex justify-center px-2 pt-1">
{type.type}
</div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ module.exports = {
700: 'HSL(90, 60%, 50%)',
900: 'HSL(90, 40%, 40%)',
},
accent5: {
600: 'HSL(178, 93%, 21%)',
},
},
textShadow: {
sm: '0 1px 2px var(--tw-shadow-color)',
Expand Down

0 comments on commit b2a2615

Please sign in to comment.