more small adjustments to light mode

This commit is contained in:
jeffvli
2025-12-15 00:55:13 -08:00
parent 3c2af4bd1a
commit 88b27fa378
5 changed files with 15 additions and 4 deletions
@@ -41,8 +41,16 @@
}
&:hover {
&::before {
opacity: 0.7;
@mixin dark {
&::before {
opacity: 0.7;
}
}
@mixin light {
&::before {
opacity: 0.5;
}
}
}
}
@@ -111,3 +111,4 @@ export const openCreateRadioStationModal = (
title: t('action.createRadioStation', { postProcess: 'titleCase' }) as string,
});
};
@@ -38,3 +38,4 @@ export const RadioListHeader = ({ title }: RadioListHeaderProps) => {
</Stack>
);
};
@@ -40,3 +40,4 @@ const RadioListRouteWithBoundary = () => {
};
export default RadioListRouteWithBoundary;
@@ -5,8 +5,8 @@
}
@mixin light {
--base-color: var(--theme-colors-foreground-muted) !important;
--highlight-color: darken(var(--theme-colors-foreground-muted), 40%) !important;
--base-color: darken(var(--theme-colors-surface), 10%) !important;
--highlight-color: darken(var(--theme-colors-surface), 15%) !important;
}
--animation-duration: 1.5s !important;