Skip to content

Commit

Permalink
chore: make link color darker for light scheme (#1900)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanFl authored Sep 13, 2024
1 parent 55f751d commit 2ae8073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/commons/layout/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function getLinkColor(setting_theme: string) {
if (setting_theme == "dark") {
return "#6ed2f0";
} else {
return "#00B3F0";
return "#008BBC";
}
}

Expand Down Expand Up @@ -119,9 +119,9 @@ export const lightTheme = {
styleOverrides: {
root: {
"& .RaReferenceField-link>*": {
color: "#00B3F0",
color: "#008BBC",
":visited": {
color: "#00B3F0",
color: "#008BBC",
},
},
},
Expand Down

0 comments on commit 2ae8073

Please sign in to comment.