Skip to content
Snippets Groups Projects
colors.js 103 B
Newer Older
Alexander Schoch's avatar
Alexander Schoch committed
export function getAccentColor(theme) {
  return theme.colorScheme === "dark" ? "white" : "#244471";
}