Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/about/page.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Questions card — custom border color (#7AFFB2 at 30% opacity) */
/* Questions card — custom border color (bright-teal-300 at 30% opacity) */
.questionsCard {
padding: 40px;
border: 1px solid rgba(122, 255, 178, 0.3);
border: 1px solid color-mix(in srgb, var(--bright-teal-300) 30%, transparent);
border-radius: 16px;
align-self: flex-start;
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/developers/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ a.endpointCard {
flex: none;
padding: 3px 8px;
border-radius: 6px;
background-color: rgba(122, 255, 178, 0.12);
color: var(--bright-green);
background-color: color-mix(in srgb, var(--bright-teal-300) 12%, transparent);
color: var(--bright-teal-300);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.5px;
Expand Down
8 changes: 6 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ label {
color: var(--bright-teal-500);
}
.color-light-teal {
color: var(--bright-green);
color: var(--bright-teal-300);
}
.color-white {
color: #fff;
Expand All @@ -227,7 +227,11 @@ label {

.underline {
text-decoration: underline;
text-decoration-color: rgba(122, 255, 178, 0.3);
text-decoration-color: color-mix(
in srgb,
var(--bright-teal-300) 30%,
transparent
);
text-underline-offset: 6px;
transition: all var(--hover-transition);
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/Navigation.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
height: 40px;
padding-left: 4px;
padding-right: 16px;
border: 1px solid rgba(122, 255, 178, 0.3);
border: 1px solid color-mix(in srgb, var(--bright-teal-300) 30%, transparent);
border-radius: 20px;
flex: none;
max-width: 100%;
Expand All @@ -108,7 +108,7 @@
gap: 8px;
height: 40px;
padding: 0 16px;
border: 1px solid rgba(122, 255, 178, 0.3);
border: 1px solid color-mix(in srgb, var(--bright-teal-300) 30%, transparent);
border-radius: 20px;
transition: all var(--hover-transition);
position: relative;
Expand All @@ -134,7 +134,7 @@
height: 40px;
padding-left: 4px;
padding-right: 16px;
border: 1px solid rgba(122, 255, 178, 0.3);
border: 1px solid color-mix(in srgb, var(--bright-teal-300) 30%, transparent);
border-radius: 20px;
width: 100%;
max-width: 100%;
Expand Down
12 changes: 8 additions & 4 deletions src/components/SearchModal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

.filter-chip {
flex: none;
background-color: var(--bright-green);
background-color: var(--bright-teal-300);
color: var(--teal-900);
border: none;
border-radius: 999px;
Expand All @@ -80,7 +80,11 @@
}

.filter-chip:hover {
background-color: color-mix(in srgb, var(--bright-green) 80%, var(--white));
background-color: color-mix(
in srgb,
var(--bright-teal-300) 80%,
var(--white)
);
}

.filter-chip svg {
Expand Down Expand Up @@ -224,7 +228,7 @@

.result-icon-initials {
background-color: var(--teal-750);
color: var(--bright-green);
color: var(--bright-teal-300);
border-radius: 50%;
}

Expand All @@ -242,7 +246,7 @@
}

.result-subtitle {
color: var(--bright-green);
color: var(--bright-teal-300);
}

.result-description {
Expand Down