Skip to content

Commit 2740d4b

Browse files
committed
🔨 Fix text color on dark mode
1 parent c0a2662 commit 2740d4b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

frontend/src/assets/styles/colours.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ html {
7777
--colour-ti-black: #000000;
7878
--colour-ti-base: #1A202C;
7979
--colour-ti-base-dark: #EEEEF0; /* Forced dark mode colour */
80+
--colour-ti-base-light: #1A202C;
8081
--colour-ti-secondary: #4C4D58;
8182
--colour-ti-muted: #737584;
8283
--colour-ti-highlight: #1373D9;

frontend/src/views/BookerView/components/BookingViewSuccess.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ const downloadUrl = `${apiUrl}/apmt/serve/ics/${props.selectedEvent.slug}/${prop
179179
180180
.description {
181181
font-size: 0.875rem;
182-
color: var(--colour-neutral-lower);
182+
color: var(--colour-neutral-lower-light);
183183
}
184184
185185
:deep(.base.primary.filled) {
186186
position: relative;
187187
z-index: 1;
188188
background-image: linear-gradient(161deg, #a0e1ff -26%, #2b8cdc 45%);
189-
color: var(--colour-ti-base);
189+
color: var(--colour-ti-base-light);
190190
text-transform: uppercase;
191191
font-weight: 600;
192192
font-size: 0.8125rem;

0 commit comments

Comments
 (0)