diff --git a/frontend/src/scenes/session-recordings/playlist/SessionRecordingsPlaylistItem.tsx b/frontend/src/scenes/session-recordings/playlist/SessionRecordingsPlaylistItem.tsx
index 3a2a662c2419b..9cabfffcd83bb 100644
--- a/frontend/src/scenes/session-recordings/playlist/SessionRecordingsPlaylistItem.tsx
+++ b/frontend/src/scenes/session-recordings/playlist/SessionRecordingsPlaylistItem.tsx
@@ -203,7 +203,7 @@ export function SessionRecordingPlaylistItem({
-
+
{asDisplay(recording.person)}
diff --git a/frontend/src/styles/global.scss b/frontend/src/styles/global.scss
index c52cd20889b28..78cc67f3c46db 100644
--- a/frontend/src/styles/global.scss
+++ b/frontend/src/styles/global.scss
@@ -571,6 +571,7 @@ body {
--glass-bg-3000: var(--bg-light);
--glass-border-3000: var(--border);
--bg-light: #fff;
+ --link: var(--link-3000);
&.posthog-3000[theme='light'] {
--text-3000: var(--text-3000-light);
@@ -587,6 +588,7 @@ body {
--glass-bg-3000: var(--glass-bg-3000-light);
--glass-border-3000: var(--glass-border-3000-light);
--bg-light: #fff;
+ --link-3000: var(--link-3000-light);
}
&.posthog-3000[theme='dark'] {
@@ -605,6 +607,7 @@ body {
--glass-border-3000: var(--glass-border-3000-dark);
--bg-light: var(--accent-3000);
--brand-key: #fff; // In dark mode the black in PostHog's logo is replaced with white for proper contrast
+ --link-3000: var(--link-3000-dark);
}
&.posthog-3000 {
@@ -661,6 +664,10 @@ body {
font-family: var(--font-mono);
}
+ a {
+ color: var(--link);
+ }
+
// AntD uses its own border color for the bottom of tab lists, but we want to use `var(--border)`
.ant-tabs-top,
.ant-tabs-bottom {
diff --git a/frontend/src/styles/utilities.stories.tsx b/frontend/src/styles/utilities.stories.tsx
index 93d359b7b7a89..324b4e0bba76a 100644
--- a/frontend/src/styles/utilities.stories.tsx
+++ b/frontend/src/styles/utilities.stories.tsx
@@ -16,7 +16,7 @@ export const Overview = (): JSX.Element => {
Hello there!
I'm an example of how you can use utility classes to build a{' '}
- complex component without any custom CSS...
+ complex component without any custom CSS...
diff --git a/frontend/src/styles/vars.scss b/frontend/src/styles/vars.scss
index 64086c138c94f..7f18952abf6f0 100644
--- a/frontend/src/styles/vars.scss
+++ b/frontend/src/styles/vars.scss
@@ -101,7 +101,7 @@ $colors: (
'border-bold': rgba(0, 0, 0, 0.24),
'border-active': rgba(0, 0, 0, 0.36),
'transparent': transparent,
-
+ 'link': var(--link),
// Colors of the PostHog logo
'brand-blue': #1d4aff,
'brand-red': #f54e00,
@@ -123,7 +123,7 @@ $colors: (
'border-bold-3000-light': #c1c2b9,
'glass-bg-3000-light': #e4e5deb3,
'glass-border-3000-light': #e4e5de,
-
+ 'link-3000-light': var(--primary),
'text-3000-dark': #fff,
'muted-3000-dark': rgba(#fff, 0.5),
'trace-3000-dark': rgba(#fff, 0.25),
@@ -137,6 +137,7 @@ $colors: (
'border-bold-3000-dark': #3f4046,
'glass-bg-3000-dark': #1d1f27b3,
'glass-border-3000-dark': var(--border-3000-dark),
+ 'link-3000-dark': rgb(47, 129, 247),
// The derived colors
'text-3000': var(--text-3000),
'muted-3000': var(--muted-3000),
@@ -151,6 +152,7 @@ $colors: (
'border-bold-3000': var(--border-bold-3000),
'glass-bg-3000': var(--glass-bg-3000),
'glass-border-3000': var(--glass-border-3000),
+ 'link-3000': var(--link-3000),
// 'bg-light': var(--accent-3000),
);