Skip to content

Commit

Permalink
feat: update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyrusso committed Sep 5, 2023
1 parent ceae36a commit e8281e7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/app/tech-stack/components/TechStackCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ interface TechStackCardProps {

export default function TechStackCard({ title, data }: TechStackCardProps) {
return (
<div className="card w-72 sm:w-96 text-primary-content bg-neutral-50 rounded-lg">
<div className="card w-72 sm:w-96 text-black bg-white rounded-lg">
<div className="flex flex-row justify-between">
<h3 className="text-xl font-semibold text-neutral-900 mt-5 ml-5 self-center">
<h3 className="text-xl font-semibold text-black mt-5 ml-5 self-center">
{title}
</h3>
<EditButton title={title} />
</div>
<div className="h-40 overflow-y-auto mx-5 mt-6 mb-5">
<ul className="text-neutral-900">
<ul className="text-black">
{data.map((element) => (
<li
className="text-base mb-5 last:mb-0 relative grid grid-cols-[1fr,auto] items-center"
Expand Down
2 changes: 1 addition & 1 deletion src/app/tech-stack/components/TechStackContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { TechStackCard } from ".";

export default function TechStackContainer() {
return (
<div className={`card bg-primary p-10 ${styles["tech-container-width"]}`}>
<div className={`card bg-primary-content p-10 ${styles["tech-container-width"]}`}>
<ul className="grid lg:grid-cols-2 xl:grid-cols-3 grid-cols-1 gap-y-20 justify-items-stretch">
{Object.keys(techStack).map((cardType, index) => (
<li
Expand Down
2 changes: 1 addition & 1 deletion src/components/Avatar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default function Avatar() {
return (
<div className="avatar bg-neutral-300 rounded-full border-2 border-neutral-50">
<div className="avatar bg-neutral-300 rounded-full border border-base-content">
<div className="w-6"></div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/EditButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function EditButton({ title }: EditButtonProps) {
return (
<button
type="button"
className="btn grid grid-cols-[auto,auto] gap-x-1 mt-5 mr-5 capitalize w-16 h-8 p-0 min-h-full text-sm font-semibold text-neutral-500 bg-white border-transparent"
className="btn grid grid-cols-[auto,auto] gap-x-1 mt-5 mr-5 capitalize w-16 h-8 p-0 min-h-full text-sm font-semibold text-black bg-secondary border-transparent"
aria-label={`Edit ${title}`}
>
<PencilSquareIcon className="h-4 w-4 text-black" />
Expand Down

0 comments on commit e8281e7

Please sign in to comment.