neues Admin UI Layout eingeführt. Alle Tests auf den neusten Stand gebracht.

This commit is contained in:
Codex Agent
2025-12-30 10:24:06 +01:00
parent 902e78cae9
commit efe2f25b3e
85 changed files with 95235 additions and 19197 deletions

View File

@@ -4160,23 +4160,26 @@ var tokens3 = {
...tokens2,
color: {
...tokens2.color,
primary: "#007AFF",
accent: "#5AD2F4",
success: "#2ECC71",
primary: "#FF5A5F",
accent: "#FFB6C1",
accentSoft: "#FFE5EC",
success: "#06D6A0",
warning: "#F5C542",
danger: "#FF5F56",
danger: "#E04848",
surface: "#ffffff",
muted: "#f3f4f6"
muted: "#F4ECE8",
border: "#F2E4DA",
text: "#1F2937"
},
radius: {
...tokens2.radius,
card: 18,
tile: 16,
card: 20,
tile: 14,
pill: 999
},
size: {
...tokens2.size,
card: 18
card: 20
}
};
var themes3 = {
@@ -4185,15 +4188,53 @@ var themes3 = {
...themes2.light,
primary: tokens3.color.primary,
accent: tokens3.color.accent,
background: "#f5f7fb",
surface: tokens3.color.surface
background: "#FFF8F5",
backgroundHover: "#FFF1EC",
backgroundPress: "#FFE7E0",
backgroundStrong: tokens3.color.surface,
backgroundTransparent: "rgba(255, 248, 245, 0)",
color: tokens3.color.text,
colorHover: "#111827",
colorPress: "#0F172A",
colorFocus: "#0F172A",
borderColor: tokens3.color.border,
borderColorHover: "#EAD5C9",
borderColorPress: "#E0C9BC",
shadowColor: "rgba(31, 41, 55, 0.12)",
shadowColorPress: "rgba(31, 41, 55, 0.16)",
shadowColorFocus: "rgba(31, 41, 55, 0.18)",
surface: tokens3.color.surface,
muted: tokens3.color.muted,
blue3: tokens3.color.accentSoft,
blue6: tokens3.color.accent,
blue10: tokens3.color.primary,
blue11: "#C2413B"
},
dark: {
...themes2.dark,
primary: tokens3.color.primary,
accent: tokens3.color.accent,
background: "#0f172a",
surface: "#111827"
background: "#171219",
backgroundHover: "#1F1A23",
backgroundPress: "#26212B",
backgroundStrong: "#1F1A23",
backgroundTransparent: "rgba(23, 18, 25, 0)",
color: "#F8F6F2",
colorHover: "#FFFFFF",
colorPress: "#FDF8F5",
colorFocus: "#FFFFFF",
borderColor: "#2C2531",
borderColorHover: "#3A3240",
borderColorPress: "#443C4A",
shadowColor: "rgba(0, 0, 0, 0.55)",
shadowColorPress: "rgba(0, 0, 0, 0.65)",
shadowColorFocus: "rgba(0, 0, 0, 0.6)",
surface: "#1F1A23",
muted: "#241E28",
blue3: "#2B1D23",
blue6: "#5A2D34",
blue10: "#FF7A7F",
blue11: "#FFB3B6"
}
};
var sharedWeights = {
@@ -4208,26 +4249,26 @@ var fonts2 = {
...defaultConfig.fonts,
body: {
...defaultConfig.fonts.body,
family: "Montserrat",
family: "Manrope",
weight: sharedWeights
},
heading: {
...defaultConfig.fonts.heading,
family: "Montserrat",
family: "Manrope",
weight: sharedWeights
},
display: {
...defaultConfig.fonts.heading,
family: "Playfair Display",
family: "Fraunces",
weight: sharedWeights
}
};
var config = (0, import_core2.createTamagui)({
...defaultConfig,
animations: createAnimations({
fast: "ease-in 150ms",
medium: "ease 250ms",
slow: "ease-out 400ms"
fast: "cubic-bezier(0.2, 0.7, 0.2, 1) 150ms",
medium: "cubic-bezier(0.2, 0.7, 0.2, 1) 250ms",
slow: "cubic-bezier(0.2, 0.7, 0.2, 1) 400ms"
}),
tokens: tokens3,
themes: themes3,