aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2025-07-22 17:22:11 +0100
committerGravatar Joe Banks <[email protected]>2025-07-22 17:22:11 +0100
commited151b46b94ea16117bb95ae4fc979f01a0e5fef (patch)
tree67434c785057519b80128bd77fdd4dde4f4023b8
parentRender section content with markdown renderer (diff)
Add some font weights back where they make sense
-rw-r--r--src/colors.ts2
-rw-r--r--src/commonStyles.tsx2
-rw-r--r--src/components/InputTypes/Radio.tsx1
-rw-r--r--src/components/OAuth2Button.tsx1
4 files changed, 5 insertions, 1 deletions
diff --git a/src/colors.ts b/src/colors.ts
index dfdd390..87479ed 100644
--- a/src/colors.ts
+++ b/src/colors.ts
@@ -3,7 +3,7 @@ export default {
darkerBlurple: "#4E609C",
darkButNotBlack: "#2C2F33",
notQuiteBlack: "#23272A",
- greyple: "#99AAB5",
+ greyple: "#91A3B1",
darkerGreyple: "#6E7D88",
error: "#f04747",
success: "#37805e"
diff --git a/src/commonStyles.tsx b/src/commonStyles.tsx
index b4989da..4d7ee08 100644
--- a/src/commonStyles.tsx
+++ b/src/commonStyles.tsx
@@ -53,6 +53,7 @@ const textInputs = css`
const actionButtonStyles = css`
white-space: nowrap;
+ font-weight: bolder;
button:disabled {
background-color: ${colors.greyple};
@@ -126,6 +127,7 @@ const navigationStyles = css`
const returnButtonStyles = css`
font-size: 1.5rem;
text-align: center;
+ font-weight: bolder;
color: white;
text-decoration: none;
diff --git a/src/components/InputTypes/Radio.tsx b/src/components/InputTypes/Radio.tsx
index 5e37c57..bbf4c92 100644
--- a/src/components/InputTypes/Radio.tsx
+++ b/src/components/InputTypes/Radio.tsx
@@ -33,6 +33,7 @@ border-radius: 5px;
cursor: pointer;
transition: background-color 0.25s ease, transform 0.25s ease;
transform: none;
+font-weight: bolder;
:hover {
background-color: ${colors.greyple};
diff --git a/src/components/OAuth2Button.tsx b/src/components/OAuth2Button.tsx
index 67399ee..5e980b7 100644
--- a/src/components/OAuth2Button.tsx
+++ b/src/components/OAuth2Button.tsx
@@ -24,6 +24,7 @@ const iconStyles = css`
const textStyles = css`
display: inline-block;
padding: 0.5rem 0.75rem 0.5rem 0.5rem;
+ font-weight: bolder;
`;
const errorStyles = css`