summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/themeCommand.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/commands/themeCommand.ts')
-rw-r--r--packages/cli/src/ui/commands/themeCommand.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/cli/src/ui/commands/themeCommand.ts b/packages/cli/src/ui/commands/themeCommand.ts
new file mode 100644
index 00000000..29e9a491
--- /dev/null
+++ b/packages/cli/src/ui/commands/themeCommand.ts
@@ -0,0 +1,16 @@
+/**
+ * @license
+ * Copyright 2025 Google LLC
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+import { OpenDialogActionReturn, SlashCommand } from './types.js';
+
+export const themeCommand: SlashCommand = {
+ name: 'theme',
+ description: 'change the theme',
+ action: (_context, _args): OpenDialogActionReturn => ({
+ type: 'dialog',
+ dialog: 'theme',
+ }),
+};