Skip to content

Commit ed151b4

Browse files
committed
Add some font weights back where they make sense
1 parent efe0d64 commit ed151b4

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

src/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default {
33
darkerBlurple: "#4E609C",
44
darkButNotBlack: "#2C2F33",
55
notQuiteBlack: "#23272A",
6-
greyple: "#99AAB5",
6+
greyple: "#91A3B1",
77
darkerGreyple: "#6E7D88",
88
error: "#f04747",
99
success: "#37805e"

src/commonStyles.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const textInputs = css`
5353

5454
const actionButtonStyles = css`
5555
white-space: nowrap;
56+
font-weight: bolder;
5657
5758
button:disabled {
5859
background-color: ${colors.greyple};
@@ -126,6 +127,7 @@ const navigationStyles = css`
126127
const returnButtonStyles = css`
127128
font-size: 1.5rem;
128129
text-align: center;
130+
font-weight: bolder;
129131
130132
color: white;
131133
text-decoration: none;

src/components/InputTypes/Radio.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ border-radius: 5px;
3333
cursor: pointer;
3434
transition: background-color 0.25s ease, transform 0.25s ease;
3535
transform: none;
36+
font-weight: bolder;
3637
3738
:hover {
3839
background-color: ${colors.greyple};

src/components/OAuth2Button.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const iconStyles = css`
2424
const textStyles = css`
2525
display: inline-block;
2626
padding: 0.5rem 0.75rem 0.5rem 0.5rem;
27+
font-weight: bolder;
2728
`;
2829

2930
const errorStyles = css`

0 commit comments

Comments
 (0)