@storm-software/git-tools 2.58.3 → 2.59.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5719,8 +5719,7 @@ var z = /* @__PURE__ */ Object.freeze({
5719
5719
  var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#0D1017").describe("The dark background color of the workspace");
5720
5720
  var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
5721
5721
  var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#3fc1b0").describe("The primary brand specific color of the workspace");
5722
- var Brand2ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
5723
- var Brand3ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
5722
+ var AlternateColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The alternate brand specific color of the workspace");
5724
5723
  var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
5725
5724
  var HelpColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
5726
5725
  var SuccessColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
@@ -5732,8 +5731,7 @@ var DarkThemeColorConfigSchema = z.object({
5732
5731
  foreground: LightColorSchema,
5733
5732
  background: DarkColorSchema,
5734
5733
  brand: BrandColorSchema,
5735
- brand2: Brand2ColorSchema,
5736
- brand3: Brand3ColorSchema,
5734
+ alternate: AlternateColorSchema,
5737
5735
  accent: AccentColorSchema,
5738
5736
  help: HelpColorSchema,
5739
5737
  success: SuccessColorSchema,
@@ -5746,8 +5744,7 @@ var LightThemeColorConfigSchema = z.object({
5746
5744
  foreground: DarkColorSchema,
5747
5745
  background: LightColorSchema,
5748
5746
  brand: BrandColorSchema,
5749
- brand2: Brand2ColorSchema,
5750
- brand3: Brand3ColorSchema,
5747
+ alternate: AlternateColorSchema,
5751
5748
  accent: AccentColorSchema,
5752
5749
  help: HelpColorSchema,
5753
5750
  success: SuccessColorSchema,
@@ -5764,8 +5761,7 @@ var SingleThemeColorConfigSchema = z.object({
5764
5761
  dark: DarkColorSchema,
5765
5762
  light: LightColorSchema,
5766
5763
  brand: BrandColorSchema,
5767
- brand2: Brand2ColorSchema,
5768
- brand3: Brand3ColorSchema,
5764
+ alternate: AlternateColorSchema,
5769
5765
  accent: AccentColorSchema,
5770
5766
  help: HelpColorSchema,
5771
5767
  success: SuccessColorSchema,
@@ -5855,29 +5851,25 @@ var StormConfigSchema = z.object({
5855
5851
 
5856
5852
  // packages/config-tools/src/utilities/get-default-config.ts
5857
5853
  var DEFAULT_COLOR_CONFIG = {
5858
- light: {
5859
- background: "#f4f4f5",
5860
- foreground: "#1d232a",
5861
- brand: "#1fb2a6",
5862
- brand2: "#7434DB",
5863
- brand3: "#00C2CE",
5864
- help: "#8250df",
5865
- success: "#087f5b",
5866
- info: "#0550ae",
5867
- warning: "#e3b341",
5868
- error: "#a40e26"
5854
+ "light": {
5855
+ "background": "#fafafa",
5856
+ "foreground": "#121212",
5857
+ "brand": "#1fb2a6",
5858
+ "help": "#5C4EE5",
5859
+ "success": "#087f5b",
5860
+ "info": "#0550ae",
5861
+ "warning": "#e3b341",
5862
+ "error": "#a40e26"
5869
5863
  },
5870
- dark: {
5871
- background: "#0D1017",
5872
- foreground: "#fcfcf5",
5873
- brand: "#1fb2a6",
5874
- brand2: "#7434DB",
5875
- brand3: "#00C2CE",
5876
- help: "#8256D0",
5877
- success: "#087f5b",
5878
- info: "#316DCA",
5879
- warning: "#F3D371",
5880
- error: "#d1242f"
5864
+ "dark": {
5865
+ "background": "#22272e",
5866
+ "foreground": "#f0f0f0",
5867
+ "brand": "#3fc1b0",
5868
+ "help": "#5C4EE5",
5869
+ "success": "#10b981",
5870
+ "info": "#58a6ff",
5871
+ "warning": "#f3d371",
5872
+ "error": "#d1242f"
5881
5873
  }
5882
5874
  };
5883
5875
  var DEFAULT_STORM_CONFIG = {
File without changes