From 61393bca9093382199714e7520ded4627be98300 Mon Sep 17 00:00:00 2001 From: Giulia Ye Date: Sat, 14 Mar 2026 16:03:03 +0100 Subject: [PATCH] fix(editor): catppuccin theme declared following alphabetical order based by id Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- packages/codemirror/src/color_themes.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/codemirror/src/color_themes.ts b/packages/codemirror/src/color_themes.ts index 63b63da8d4..a9e3a71e53 100644 --- a/packages/codemirror/src/color_themes.ts +++ b/packages/codemirror/src/color_themes.ts @@ -37,16 +37,16 @@ const themes: ThemeDefinition[] = [ name: "Basic Light", load: async () => (await import("@fsegurai/codemirror-theme-basic-light")).basicLight }, - { - id: "catppuccin-latte", - name: "Catppuccin Latte", - load: async () => (await import("@catppuccin/codemirror")).catppuccinLatte - }, { id: "catppuccin-frappe", name: "Catppuccin Frappé", load: async () => (await import("@catppuccin/codemirror")).catppuccinFrappe }, + { + id: "catppuccin-latte", + name: "Catppuccin Latte", + load: async () => (await import("@catppuccin/codemirror")).catppuccinLatte + }, { id: "catppuccin-macchiato", name: "Catppuccin Macchiato",