Skip to content

Commit

Permalink
Added profile picture colors and fixed sizing of text classes
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulHo0501 committed Feb 1, 2024
1 parent 3dfeb4c commit f7b30de
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,51 +24,51 @@
.text-display1 {
font-family: "Proxima Nova";
font-weight: bold;
font-size: 64px;
font-size: 4rem;
}
.text-display2 {
font-family: "Proxima Nova";
font-weight: bold;
font-size: 56px;
font-size: 3.5rem;
}
.text-h1 {
font-family: "Proxima Nova";
font-weight: bold;
font-size: 40px;
font-size: 2.5rem;
}
.text-h2 {
font-family: "Proxima Nova";
font-weight: bold;
font-size: 32px;
font-size: 2rem;
}
.text-h3 {
font-family: "Proxima Nova";
font-weight: bold;
font-size: 24px;
font-size: 1.5rem;
}
.text-h4 {
font-family: "Proxima Nova";
font-weight: bold;
font-size: 16px;
font-size: 1rem;
}
.text-body-reg {
font-family: "Helvetica Now Display";
font-weight: normal;
font-size: 16px;
font-size: 1rem;
}
.text-body-sm {
font-family: "Helvetica Now Display";
font-weight: normal;
font-size: 14px;
font-size: 0.875rem;
}
.text-sm {
font-family: "Helvetica Now Display";
font-weight: normal;
font-size: 12px;
font-size: 0.75rem;
}
.text-tiny {
font-family: "Helvetica Now Display";
font-weight: normal;
font-size: 10px;
font-size: 0.625rem;
}
}
2 changes: 2 additions & 0 deletions src/routes/Test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ function Test() {
<TestSquare className={"bg-primary-main"} />
<TestSquare className={"bg-secondary-main"} />
<TestSquare className={"bg-accent"} />
<TestSquare className={"bg-profile-jade"} />
<TestSquare className={"bg-profile-tulip"} />
</div>
</div>
);
Expand Down
10 changes: 10 additions & 0 deletions tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ module.exports = {
500: "#E4E4EB",
},
},
profile: {
tulip: "#F68F8F",
gold: "#F1C38D",
lime: "#F4FAAE",
jade: "#B8F1B6",
water: "#D0E4FF",
air: "#A7E4FC",
lilac: "#E6BFFF",
candy: "#F6AEDE",
},
},
fontFamily: {
display: ['"Proxima Nova"', "sans-serif"],
Expand Down

0 comments on commit f7b30de

Please sign in to comment.