diff --git a/optuna_dashboard/ts/components/Settings.tsx b/optuna_dashboard/ts/components/Settings.tsx
index 50ad1213..6b58453d 100644
--- a/optuna_dashboard/ts/components/Settings.tsx
+++ b/optuna_dashboard/ts/components/Settings.tsx
@@ -55,7 +55,7 @@ export const Settings = ({ handleClose }: SettingsProps) => {
Settings
@@ -76,9 +76,16 @@ export const Settings = ({ handleClose }: SettingsProps) => {
value={plotlyColorTheme.dark}
onChange={handleDarkModeColorChange}
>
-
+ {(
+ [{ value: "default", label: "Default" }] as {
+ value: PlotlyColorThemeDark
+ label: string
+ }[]
+ ).map((v) => (
+
+ ))}
@@ -92,18 +99,21 @@ export const Settings = ({ handleClose }: SettingsProps) => {
value={plotlyColorTheme.light}
onChange={handleLightModeColorChange}
>
-
-
-
-
+ {(
+ [
+ { value: "default", label: "Default" },
+ { value: "seaborn", label: "Seaborn" },
+ { value: "presentation", label: "Presentation" },
+ { value: "ggplot2", label: "GGPlot2" },
+ ] as {
+ value: PlotlyColorThemeLight
+ label: string
+ }[]
+ ).map((v) => (
+
+ ))}
)}