Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thanks for asking me to work on this. I will get started on it and keep this PR's description up to date as I form a plan and make progress.
Original prompt
App summary & goals
Soul Ink — front-end only (React + TypeScript).
An emotionally safe, minimalist journaling front-end with a visible, animated companion agent that reacts to the user and quietly performs tasks in the UI. Design is inspired by Google’s color palette (not copied), glassmorphic cards, smooth micro-interactions, and minimal visual noise.
Primary goals:
Design tokens (single source of truth)
Provide these as
src/styles/designTokens.css(CSS variables) or as a TypeScript theme object.Colors (Google-inspired):
--g-blue: #1a73e8;(Primary)--g-red: #ea4335;--g-yellow: #fbbc05;--g-green: #34a853;--bg: #0f1724;(or light mode#ffffff) — support dark/light.--glass-bg: rgba(255,255,255,0.06);--glass-border: rgba(255,255,255,0.12);--muted: rgba(255,255,255,0.6);--accent: var(--g-blue);Spacing & typography:
4px(scale: 4,8,12,16,24,32,48)Inter, Roboto, system-ui, -apple-system, "Segoe UI", sans-serif--fs-xs:12px; --fs-sm:14px; --fs-md:16px; --fs-lg:20px; --fs-xl:28px;--radius-sm:8px; --radius-md:16px; --radius-lg:24px;Glassmorphism guidelines:
backdrop-filter: blur(8px) saturate(120%);background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));border: 1px solid var(--glass-border);box-shadow: 0 6px 24px rgba(2,6,23,0.35);(tweak for light/dark modes)Stack & libs (frontend only)
.module.css), no global style leakage; design tokens in one CSS fileHTMLCanvasElementfor agent dotted water effect (for performance)react-ariaconcepts; ARIA labels and keyboard shortcutsFolder structure (suggestion)
Component strategy & guidelines
components/ui/and small (Button, Input, Icon). All use CSS Modules and accept className prop.Propsinterface.CardandGlassCardcomponents that accept slots.React.memoand hooks with stable deps.Component.module.css— avoid deep selectors.Page-by-page detailed spec
1) Intro — minimalist sign in / sign up
Goal: calm, privacy-first onboarding.
Layout:
Sign In/Sign Upprimary.Continue as Guest(optional). Small privacy link.Form details:
Store local only (no cloud)toggle.Remember metoggle.Accessibility:
labelelements andaria-describedbyfor errors.Animations:...
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.