From 87d5456bc63a6e2ae03458029afc02ceba3d39a2 Mon Sep 17 00:00:00 2001 From: jimmy Date: Mon, 25 Sep 2023 09:59:54 +0200 Subject: [PATCH] chore: re-generate theme due to bump --- theme/tokens/generated/css/dark.css | 4 +++- theme/tokens/generated/css/global.css | 2 +- theme/tokens/generated/css/light.css | 4 +++- theme/tokens/generated/json/colors.json | 8 +++++++- theme/tokens/generated/tokens/dark.json | 8 ++++++++ theme/tokens/generated/tokens/light.json | 8 ++++++++ theme/tokens/generated/ts/base.ts | 2 +- theme/tokens/generated/ts/dark.ts | 4 +++- theme/tokens/generated/ts/light.ts | 4 +++- theme/tokens/generated/xaml/Colors.xaml | 6 +++++- theme/tokens/generated/xaml/ConstantResources.xaml | 2 +- theme/tokens/generated/xaml/Dark.xaml | 12 +++++++++++- theme/tokens/generated/xaml/Light.xaml | 12 +++++++++++- 13 files changed, 65 insertions(+), 11 deletions(-) diff --git a/theme/tokens/generated/css/dark.css b/theme/tokens/generated/css/dark.css index 803c6783..f50b177e 100644 --- a/theme/tokens/generated/css/dark.css +++ b/theme/tokens/generated/css/dark.css @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 22 Sep 2023 14:14:03 GMT + * Generated on Mon, 25 Sep 2023 07:58:57 GMT */ .dark { @@ -87,6 +87,7 @@ --color-neutral-stroke-disabled: #424242; --color-neutral-stroke-inverted-disabled: rgba(255, 255, 255, 0.4); --color-neutral-stroke-alpha: rgba(255, 255, 255, 0.1); + --color-neutral-stroke-alpha2: rgba(255, 255, 255, 0.2); --color-neutral-shadow-ambient: rgba(0,0,0,0.24); --color-neutral-shadow-key: rgba(0,0,0,0.28); --color-neutral-shadow-ambient-lighter: rgba(0,0,0,0.12); @@ -128,6 +129,7 @@ --color-brand-stroke2: #5C3E00; --color-brand-stroke2-hover: #674808; --color-brand-stroke2-pressed: #3E2F1D; + --color-brand-stroke2-contrast: #674808; --color-brand-shadow-ambient: rgba(0,0,0,0.30); --color-brand-shadow-key: rgba(0,0,0,0.25); --color-subtle-background: transparent; diff --git a/theme/tokens/generated/css/global.css b/theme/tokens/generated/css/global.css index dd1ac5f3..f4b89b12 100644 --- a/theme/tokens/generated/css/global.css +++ b/theme/tokens/generated/css/global.css @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 22 Sep 2023 14:14:03 GMT + * Generated on Mon, 25 Sep 2023 07:58:57 GMT */ :root { diff --git a/theme/tokens/generated/css/light.css b/theme/tokens/generated/css/light.css index fed89926..2d610417 100644 --- a/theme/tokens/generated/css/light.css +++ b/theme/tokens/generated/css/light.css @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 22 Sep 2023 14:14:03 GMT + * Generated on Mon, 25 Sep 2023 07:58:57 GMT */ .light { @@ -87,6 +87,7 @@ --color-neutral-stroke-disabled: #e0e0e0; --color-neutral-stroke-inverted-disabled: rgba(255, 255, 255, 0.4); --color-neutral-stroke-alpha: rgba(0, 0, 0, 0.05); + --color-neutral-stroke-alpha2: rgba(255, 255, 255, 0.2); --color-neutral-shadow-ambient: rgba(0,0,0,0.12); --color-neutral-shadow-key: rgba(0,0,0,0.14); --color-neutral-shadow-ambient-lighter: rgba(0,0,0,0.06); @@ -128,6 +129,7 @@ --color-brand-stroke2: #FFEEBA; --color-brand-stroke2-hover: #FFDC70; --color-brand-stroke2-pressed: #EFAB01; + --color-brand-stroke2-contrast: #FFEEBA; --color-brand-shadow-ambient: rgba(0,0,0,0.30); --color-brand-shadow-key: rgba(0,0,0,0.25); --color-subtle-background: transparent; diff --git a/theme/tokens/generated/json/colors.json b/theme/tokens/generated/json/colors.json index 6d1b2e28..83d3c9ad 100644 --- a/theme/tokens/generated/json/colors.json +++ b/theme/tokens/generated/json/colors.json @@ -145,6 +145,7 @@ "#674808": [ "dark.colorBrandForegroundOnLightPressed", "dark.colorBrandStroke2Hover", + "dark.colorBrandStroke2Contrast", "light.colorBrandForegroundOnLightPressed" ], "#6b6b6b": [ @@ -312,7 +313,8 @@ "#ffeeba": [ "dark.colorBrandBackgroundInvertedPressed", "light.colorBrandBackgroundInvertedPressed", - "light.colorBrandStroke2" + "light.colorBrandStroke2", + "light.colorBrandStroke2Contrast" ], "#fff6d7": [ "dark.colorBrandBackgroundInvertedSelected", @@ -440,6 +442,10 @@ "dark.colorNeutralStencil1Alpha", "light.colorNeutralBackgroundInvertedDisabled" ], + "rgba(255, 255, 255, 0.2)": [ + "dark.colorNeutralStrokeAlpha2", + "light.colorNeutralStrokeAlpha2" + ], "rgba(255, 255, 255, 0.4)": [ "dark.colorNeutralForegroundInvertedDisabled", "dark.colorNeutralStrokeInvertedDisabled", diff --git a/theme/tokens/generated/tokens/dark.json b/theme/tokens/generated/tokens/dark.json index f6f01035..ff200951 100644 --- a/theme/tokens/generated/tokens/dark.json +++ b/theme/tokens/generated/tokens/dark.json @@ -337,6 +337,10 @@ "Alpha": { "value": "rgba(255, 255, 255, 0.1)", "type": "color" + }, + "Alpha2": { + "value": "rgba(255, 255, 255, 0.2)", + "type": "color" } }, "Shadow": { @@ -509,6 +513,10 @@ "value": "#3E2F1D", "type": "color" }, + "Stroke2Contrast": { + "value": "#674808", + "type": "color" + }, "ShadowAmbient": { "value": "rgba(0,0,0,0.30)", "type": "color" diff --git a/theme/tokens/generated/tokens/light.json b/theme/tokens/generated/tokens/light.json index 9e1089dc..9332bcb0 100644 --- a/theme/tokens/generated/tokens/light.json +++ b/theme/tokens/generated/tokens/light.json @@ -337,6 +337,10 @@ "Alpha": { "value": "rgba(0, 0, 0, 0.05)", "type": "color" + }, + "Alpha2": { + "value": "rgba(255, 255, 255, 0.2)", + "type": "color" } }, "Shadow": { @@ -509,6 +513,10 @@ "value": "#EFAB01", "type": "color" }, + "Stroke2Contrast": { + "value": "#FFEEBA", + "type": "color" + }, "ShadowAmbient": { "value": "rgba(0,0,0,0.30)", "type": "color" diff --git a/theme/tokens/generated/ts/base.ts b/theme/tokens/generated/ts/base.ts index 4742e13b..a8db4d03 100644 --- a/theme/tokens/generated/ts/base.ts +++ b/theme/tokens/generated/ts/base.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 22 Sep 2023 14:14:03 GMT + * Generated on Mon, 25 Sep 2023 07:58:57 GMT */ import { LineHeightTokens, FontFamilyTokens, FontSizeTokens, FontWeightTokens, BorderRadiusTokens, StrokeWidthTokens } from "@fluentui/react-components"; diff --git a/theme/tokens/generated/ts/dark.ts b/theme/tokens/generated/ts/dark.ts index 4c70a29d..acc2448e 100644 --- a/theme/tokens/generated/ts/dark.ts +++ b/theme/tokens/generated/ts/dark.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 22 Sep 2023 14:14:03 GMT + * Generated on Mon, 25 Sep 2023 07:58:57 GMT */ import { ColorTokens, ShadowTokens, ShadowBrandTokens } from "@fluentui/react-components"; @@ -38,6 +38,7 @@ export const colorTokens: ColorTokens = { colorBrandShadowKey: "rgba(0,0,0,0.25)", colorBrandStroke1: "#ffcc33", colorBrandStroke2: "#5c3e00", + colorBrandStroke2Contrast: "#674808", colorBrandStroke2Hover: "#674808", colorBrandStroke2Pressed: "#3e2f1d", colorCompoundBrandBackground: "#ffcc33", @@ -134,6 +135,7 @@ export const colorTokens: ColorTokens = { colorNeutralStrokeAccessiblePressed: "#b3b3b3", colorNeutralStrokeAccessibleSelected: "#ffcc33", colorNeutralStrokeAlpha: "rgba(255, 255, 255, 0.1)", + colorNeutralStrokeAlpha2: "rgba(255, 255, 255, 0.2)", colorNeutralStrokeDisabled: "#424242", colorNeutralStrokeInvertedDisabled: "rgba(255, 255, 255, 0.4)", colorNeutralStrokeOnBrand: "#292929", diff --git a/theme/tokens/generated/ts/light.ts b/theme/tokens/generated/ts/light.ts index 1c235b69..378e35eb 100644 --- a/theme/tokens/generated/ts/light.ts +++ b/theme/tokens/generated/ts/light.ts @@ -1,6 +1,6 @@ /** * Do not edit directly - * Generated on Fri, 22 Sep 2023 14:14:03 GMT + * Generated on Mon, 25 Sep 2023 07:58:57 GMT */ import { ColorTokens, ShadowTokens, ShadowBrandTokens } from "@fluentui/react-components"; @@ -38,6 +38,7 @@ export const colorTokens: ColorTokens = { colorBrandShadowKey: "rgba(0,0,0,0.25)", colorBrandStroke1: "#efab01", colorBrandStroke2: "#ffeeba", + colorBrandStroke2Contrast: "#ffeeba", colorBrandStroke2Hover: "#ffdc70", colorBrandStroke2Pressed: "#efab01", colorCompoundBrandBackground: "#fec10c", @@ -134,6 +135,7 @@ export const colorTokens: ColorTokens = { colorNeutralStrokeAccessiblePressed: "#4d4d4d", colorNeutralStrokeAccessibleSelected: "#efab01", colorNeutralStrokeAlpha: "rgba(0, 0, 0, 0.05)", + colorNeutralStrokeAlpha2: "rgba(255, 255, 255, 0.2)", colorNeutralStrokeDisabled: "#e0e0e0", colorNeutralStrokeInvertedDisabled: "rgba(255, 255, 255, 0.4)", colorNeutralStrokeOnBrand: "#ffffff", diff --git a/theme/tokens/generated/xaml/Colors.xaml b/theme/tokens/generated/xaml/Colors.xaml index 8051bc6f..5cee3f7a 100644 --- a/theme/tokens/generated/xaml/Colors.xaml +++ b/theme/tokens/generated/xaml/Colors.xaml @@ -1,6 +1,6 @@ #424242 rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.1) + rgba(255, 255, 255, 0.2) rgba(0,0,0,0.24) rgba(0,0,0,0.28) rgba(0,0,0,0.12) @@ -130,6 +131,7 @@ #5C3E00 #674808 #3E2F1D + #674808 rgba(0,0,0,0.30) rgba(0,0,0,0.25) transparent @@ -246,6 +248,7 @@ #e0e0e0 rgba(255, 255, 255, 0.4) rgba(0, 0, 0, 0.05) + rgba(255, 255, 255, 0.2) rgba(0,0,0,0.12) rgba(0,0,0,0.14) rgba(0,0,0,0.06) @@ -287,6 +290,7 @@ #FFEEBA #FFDC70 #EFAB01 + #FFEEBA rgba(0,0,0,0.30) rgba(0,0,0,0.25) transparent diff --git a/theme/tokens/generated/xaml/ConstantResources.xaml b/theme/tokens/generated/xaml/ConstantResources.xaml index 1f75b191..4ca05bcf 100644 --- a/theme/tokens/generated/xaml/ConstantResources.xaml +++ b/theme/tokens/generated/xaml/ConstantResources.xaml @@ -1,6 +1,6 @@ + + + +