Browse code

Update

Benjamin Roth authored on05/02/2026 17:13:25
Showing1 changed files
... ...
@@ -10,6 +10,42 @@
10 10
 
11 11
   --luumicore-border-radius: 1rem;
12 12
   --luumicore-element-spacing: 2rem;
13
+
14
+  /* Winzer Portal Styles */
15
+  /* Farben */
16
+  --primary-color: #8B1E43;
17
+  --primary-rgb: 139, 30, 67;
18
+  --primary-light: #FBEAEA;
19
+
20
+  --alert-color: #D32F2F; /* Rot für Ausgebucht / PDF Icon */
21
+  --alert-light: #FFEBEE;
22
+
23
+  --bg-app: #f0f0f0;
24
+  --bg-card: #f4f4f4;
25
+  --bg-white: #ffffff;
26
+
27
+  --text-main: #333333;
28
+  --text-dark: #000000;
29
+  --text-muted: #888888;
30
+  --border-color: #eeeeee;
31
+
32
+  /* Schatten & Radius */
33
+  --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
34
+  --shadow-md: 0 4px 6px rgba(0,0,0,0.2);
35
+  --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
36
+
37
+  --radius-card: 16px;
38
+  --radius-sm: 12px;
13 39
 }
14 40
 
15 41
 /* Global styles for the core bundle */
42
+body {
43
+  margin: 0;
44
+  padding: 0;
45
+  background-color: var(--bg-app);
46
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
47
+}
48
+* { box-sizing: border-box; }
49
+
50
+/* Scrollbar hiding for cleaner mobile look */
51
+::-webkit-scrollbar { width: 0px; background: transparent; }
Browse code

Update

Benjamin Roth authored on04/02/2026 16:01:58
Showing1 changed files
... ...
@@ -1,6 +1,15 @@
1 1
 :root {
2
-    --luumicore-primary: #007bff;
3
-    --luumicore-text-color: #333;
2
+  --luumicore-primary: #8c124d;
3
+  --luumicore-primary-tint: color-mix(in srgb, var(--luumicore-primary), #ffffff 85%);
4
+  --luumicore-secondary: #f0f0f0;
5
+  --luumicore-tertiary: #ffffff;
6
+  --luumicore-text-color: #000000;
7
+  --luumicore-shadow-color: rgba(from #000 r g b / 15%);
8
+
9
+  --luumicore-shadow: .25rem .25rem .25rem var(--luumicore-shadow-color);
10
+
11
+  --luumicore-border-radius: 1rem;
12
+  --luumicore-element-spacing: 2rem;
4 13
 }
5 14
 
6 15
 /* Global styles for the core bundle */
Browse code

Add some temporary lit test components for development purposes

Benjamin Roth authored on29/12/2025 19:27:44
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,6 @@
1
+:root {
2
+    --luumicore-primary: #007bff;
3
+    --luumicore-text-color: #333;
4
+}
5
+
6
+/* Global styles for the core bundle */