Fix typo and format

This commit is contained in:
Laurent Nguyen 2024-04-29 14:27:00 +02:00
parent e9d713e65b
commit 0887998461
3 changed files with 1285 additions and 1285 deletions

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,7 @@ const appThemePortalBrandRamp: BrandVariants = {
160: "#CDD8EF", 160: "#CDD8EF",
}; };
export function getPlatformTheme (platform: Platform) : Theme { export function getPlatformTheme(platform: Platform): Theme {
if (platform === Platform.Fabric) { if (platform === Platform.Fabric) {
return createLightTheme(appThemeFabricTealBrandRamp); return createLightTheme(appThemeFabricTealBrandRamp);
} else { } else {

View File

@ -209,22 +209,22 @@ export const appThemeFabric: Theme = createTheme({
}); });
export const appThemeFabricTealBrandRamp: BrandVariants = { export const appThemeFabricTealBrandRamp: BrandVariants = {
10: '#001919', 10: "#001919",
20: '#012826', 20: "#012826",
30: '#01322E', 30: "#01322E",
40: '#033f38', 40: "#033f38",
50: '#054d43', 50: "#054d43",
60: '#0a5c50', 60: "#0a5c50",
70: '#0c695a', 70: "#0c695a",
80: '#117865', 80: "#117865",
90: '#1f937e', 90: "#1f937e",
100: '#2aaC94', 100: "#2aaC94",
110: '#3abb9f', 110: "#3abb9f",
120: '#52c7aa', 120: "#52c7aa",
130: '#78d3b9', 130: "#78d3b9",
140: '#9ee0cb', 140: "#9ee0cb",
150: '#c0ecdd', 150: "#c0ecdd",
160: '#e3f7ef', 160: "#e3f7ef",
}; };
export const appThemeFabricV9 = createLightTheme(appThemeFabricTealBrandRamp); export const appThemeFabricV9 = createLightTheme(appThemeFabricTealBrandRamp);