Redesign: Scandinavian Calm — Pure Scandi Minimal aesthetic#2
Draft
Copilot wants to merge 2 commits into
Draft
Conversation
Co-authored-by: DaveOps30 <114296949+DaveOps30@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Redesign Soc Ops Social Bingo app in Pure Scandi Minimal style
Redesign: Scandinavian Calm — Pure Scandi Minimal aesthetic
Mar 17, 2026
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.
Full visual redesign of the Soc Ops Social Bingo app using a near-monochromatic, museum-quiet Scandinavian aesthetic — warm parchment surfaces, hairline borders, Josefin Sans 300/600, sage teal as the single accent.
CSS (
app.css+index.html):rootScandi palette as CSS custom properties (--color-bg,--color-surface,--color-accent,--color-marked-*,--color-winning-*, etc.)bg-linen,bg-surface,bg-sage,bg-marked-calm,bg-winning-calm,text-primary/muted/sage/marked/winning,border-calm/marked-calm/winning,tracking-widest/wide,font-light,uppercase,rounded-2xl,gap-2,mt-*,py-6, hover/active interaction utilitiesfadeSlideUp(0.6s, staggered) andfadeIn(0.3s scale) keyframesComponents
StartScreen— parchment background, UPPERCASE letter-spaced title, "how to play" card with hairline border, sage CTA; staggeredanimate-fade-slide-upentryGameScreen— minimal header, muted back button (hover:text-primary), sage bingo completion banner replacing amberBingoBoard—gap-1→gap-2for breathing roomBingoSquare— Scandi state classes (bg-marked-calm,bg-winning-calm,border-calm); free space asfont-semibold text-sage; checkmarktext-green-600→text-sage;active:bg-linenon unmarked squaresBingoModal—animate-fade-inentry, calm Josefin Sans heading,hover:bg-sage-hoveron buttonNo logic changes — markup and class strings only.
Original prompt
Redesign: Scandinavian Calm — Variation 1: Pure Scandi Minimal
Perform a full visual redesign of the Soc Ops Social Bingo app using a Pure Scandi Minimal aesthetic. This is the most stripped-back interpretation: near-monochromatic, museum-quiet, every element earning its place. Think Copenhagen design gallery meets IKEA 1970s catalog.
Design Direction
Feeling: Ultra-restrained. Near silence. The board itself is the centrepiece; the UI recedes completely.
Palette (CSS variables — define in
:rootinapp.css):Typography:
Key style principles:
--color-border)shadow-xl; useshadow-smmax)border-radius: 0.75rem(rounded-xl) for cards,border-radius: 0.5rem(rounded-lg) for squares and buttonsFiles to change
1.
SocOps/wwwroot/index.htmlapp.css:theme-colormeta to#5B8E832.
SocOps/wwwroot/css/app.cssbodyfont-family:'Josefin Sans', sans-serif; font-weight: 300:root.bg-linen→var(--color-bg).bg-surface→var(--color-surface).bg-sage→var(--color-accent).bg-marked-calm→var(--color-marked-bg).bg-winning-calm→var(--color-winning-bg).text-primary→var(--color-text).text-muted→var(--color-text-muted).text-sage→var(--color-accent).text-marked→var(--color-marked-text).text-winning→var(--color-winning-text).border-calm→1px solid var(--color-border)(as a border shorthand, OR add.border-calm { border-color: var(--color-border); }to pair with.border).border-marked-calm→border-color: var(--color-marked-border).border-winning→border-color: var(--color-winning-border).rounded-2xl→border-radius: 1rem.gap-2→gap: 0.5rem.tracking-widest→letter-spacing: 0.15em.tracking-wide→letter-spacing: 0.06em.font-light→font-weight: 300.max-w-lg→max-width: 32rem.text-2xl→font-size: 1.5rem; line-height: 2rem.text-base→font-size: 1rem; line-height: 1.5rem.mt-2→margin-top: 0.5rem.mt-4→margin-top: 1rem.mt-6→margin-top: 1.5rem.mt-8→margin-top: 2rem.py-6→padding-top: 1.5rem; padding-bottom: 1.5rem.min-h-\[72px\]→min-height: 72px.uppercase→text-transform: uppercase.italic→font-style: italic3.
SocOps/Components/StartScreen.razorReplace the entire template with: