diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 05071ac..17b09f6 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -135,7 +135,9 @@ "mcp__claude_ai_Context7__resolve-library-id", "mcp__claude_ai_Context7__query-docs", "Bash(npm show:*)", - "Bash(git:*)" + "Bash(git:*)", + "Bash(xargs ls:*)", + "mcp__github__update_pull_request" ], "deny": [], "ask": [] diff --git a/.railwayignore b/.railwayignore new file mode 100644 index 0000000..08a1c53 --- /dev/null +++ b/.railwayignore @@ -0,0 +1,4 @@ +node_modules +.next +dist +.git diff --git a/apps/client/src/app/globals.css b/apps/client/src/app/globals.css index 203d3ea..6502fb7 100644 --- a/apps/client/src/app/globals.css +++ b/apps/client/src/app/globals.css @@ -1,17 +1,17 @@ @import "tailwindcss"; :root { - --background: #FFFBF7; - --surface: #FFFFFF; - --foreground: #5C3D2E; - --inactive: #B4A5A5; + --background: #F0E6FF; + --surface: #FAF5FF; + --foreground: #2D1B69; + --inactive: #A89BC2; - --primary: #D48C8C; - --secondary: #c4b4ae; + --primary: #7C3AED; + --secondary: #A78BFA; - --accent: #F4D160; - --danger: #EF4444; - --success: #16A34A; + --accent: #F59E0B; + --danger: #DC2626; + --success: #059669; } @font-face { @@ -91,13 +91,13 @@ @media (prefers-color-scheme: dark) { :root { - --background: #1C1410; - --surface: #2A2018; - --foreground: #F0E6D3; - --inactive: #6B5B5B; + --background: #13082E; + --surface: #1E1040; + --foreground: #EDE9FE; + --inactive: #4C3B7A; - --primary: #C47A7A; - --secondary: #8A7A74; + --primary: #8B5CF6; + --secondary: #6D28D9; } }