feat: NCS-63 User account implementation (#2)

User Profile info, no game before login/register, menu bar

---------

Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de>
Co-authored-by: shahdlala66 <shahd.lala66@gmail.com>
Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-05-06 10:51:30 +02:00
parent 2de003e497
commit ff75c8ce2f
104 changed files with 4232 additions and 978 deletions
+13 -5
View File
@@ -1,6 +1,3 @@
/* ========================================
COLOR VARIABLES - Semantic Naming
======================================== */
/* Light Mode Colors (Default) */
:root:not([data-theme='dark']) {
@@ -22,11 +19,11 @@
--color-bg-input: #B9DAD1;
--color-bg-input-focus: #B9C2DA;
--color-bg-button: #C19EF5;
--color-bg-button-hover: #BA6D4B;
--color-bg-button-hover: #ba4ba7;
--color-text-primary: #5A2C28;
--color-text-button-hover: #F3C8A0;
--color-border: #5A2C28;
--color-border: #5a2843;
}
/* Dark Mode Colors */
@@ -122,4 +119,15 @@
SHADOWS
======================================== */
--shadow-md: 0 8px 24px rgba(90, 44, 40, 0.2);
/* Neon dialog / card variables (used by welcome dialogs, toolbar, login/register) */
--bb-bg: rgba(8, 6, 28, 0.92);
--bb-border: #00d5ff;
--bb-glow: 0 0 18px rgba(0, 210, 255, 0.5), inset 0 0 10px rgba(0, 210, 255, 0.05);
--bb-tag: #00d5ff;
--bb-title: #d4f4ff;
--btn-bg: #00d5ff;
--btn-fg: #04000f;
--btn-glow: 0 0 14px rgba(0, 210, 255, 0.9);
--dlg-bg: rgba(8, 6, 28, 0.95);
--dlg-border: #00d5ff;
}