From 3ffe9a6300677588a2e335326bf2c03e7fbd5180 Mon Sep 17 00:00:00 2001 From: Alexandr Garbuzov Date: Thu, 3 Aug 2023 04:19:44 +0300 Subject: [PATCH] Themes: Add test AI-generated themes to check preview workflow (#3028) * Themes: Add test theme to check preview workflow * dev * dev * dev --- themes/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/themes/index.js b/themes/index.js index aa7a24c23b216..6450655e2da85 100644 --- a/themes/index.js +++ b/themes/index.js @@ -430,6 +430,20 @@ export const themes = { border_color: "ffffff", bg_color: "000000", }, + blue_navy: { + title_color: "82AAFF", + text_color: "82AAFF", + icon_color: "82AAFF", + border_color: "ffffff", + bg_color: "000000", + }, + calm_pink: { + title_color: "e07a5f", + text_color: "edae49", + icon_color: "ebcfb2", + border_color: "e1bc29", + bg_color: "2b2d40", + }, }; export default themes;