Corporate Memphis

Also called: Alegria

Flat cartoon figures with elastic limbs and purple skin – the 2017-22 big-tech house style that became a named anti-pattern.

Lineage: Created for Facebook in 2017 as "Alegria" by design agency BUCK; the nickname was coined by Mike Merrill from an Are.na mood-board title.

Corporate Memphis

Flat cartoon figures with elastic limbs and purple skin – the 2017-22 big-tech house style that became a named anti-pattern.

Read the entry

Seen in: Facebook/Meta's original Alegria system · Slack's pre-2022 illustration system

Project settings

Weekly digest
Advanced options
bg-page
bg-raised
text-primary
text-secondary
accent-solid
on-accent
radius · shadow
Aathe type voice

A working sample – the controls are live (hover, press, focus, the toggle's two states) and everything inside the frame is painted by the token block shown in the recipe below. Nothing saves anything; "Advanced options" jumps to the recipe. The page around the frame stays in Atlas's own system.

Spot it

  • Flat, solid-colour cartoon figures with deliberately disproportionate anatomy – long elastic limbs, small heads relative to torsos, exaggerated poses.
    Two flat cartoon figures with elastic oversized limbs, small heads and purple and blue skin, high-fiving beside an oversized plant.
    Generated with Gemini from this entry's own prompt vocabulary – the copyable brief doing its job.
  • Skin rendered in non-naturalistic colours (purple, blue) rather than any real skin tone – a specific, recognisable choice.
    • purple skin#5a48d6
    • green skin#2fa87f
    • friendly navy ink#23324e
    • cool light ground#f2f5fb
  • Minimal facial detail, often no facial features at all.
  • Figures performing generic "wholesome" activities – high-fiving, watering plants, working at laptops – designed to read as universally positive.
  • Flat fills with no shading, gradient or texture, consistent with flat design's broader language of the period.

Purple people with metre-long arms watering plants: once you can name it, you will see it on every 2019 landing page you ever visit again. Corporate Memphis is this catalogue’s cautionary entry – documented so it can be recognised and declined, not reached for. The prompt vocabulary below exists for deliberate historical or ironic citation only; by 2026 the style is close to note 09’s definition of a “safe, unexamined default” in illustration form.

Where it came from

Created on Facebook’s behalf in 2017 under the name “Alegria” (Spanish for joy) by the agency BUCK. It spread through big tech – Google, Slack, WeTransfer, Airbnb, Lyft, YouTube, Transport for London and more – largely because it solved a real production problem: infinitely scalable, cheap-to-produce illustration that fills white space without commissioning bespoke art for every surface. The “Corporate Memphis” nickname references the 1980s Memphis Group only as a loose visual cousin, not a lineage.

The backlash, dated

Decline signs by 2022: Hinge moved from illustrated characters to photography specifically for authenticity. By 2023 the style was described as oversaturated to the point of “self-cannibalisation” and had started appearing as parody; Shopify (an early adopter) shifted towards photographic treatments, Netflix rejected the aesthetic in its rebrands, and Slack dropped it. The criticism ran deeper than fatigue: figures designed to signal inclusivity and warmth began reading as an ironic mismatch with the companies deploying them – a “perceived hypocrisy” critique. (High confidence on the timeline and named companies; medium confidence on the hypocrisy framing, which is cultural criticism rather than settled design history.) The replacement direction most sources converge on – photography, or more restrained minimalism – follows from the failure mode: uniform positivity became generic-by-default, the exact “unintentional genericness” that defines slop.

When it fits

As a fresh choice in 2026: rarely, honestly. It remains worth knowing by sight – the same way note 09’s slop checklist works – so that when an agent or a template defaults to elastic purple people unprompted, that’s recognised as a warning sign with a name. The one live use: a deliberately ironic citation of “2018 tech company”, the same knowing register as Y2K nostalgia.

When it’s wrong

As a sincere choice for a brand that wants to feel current or distinctive – its original adopters’ departures are the evidence.

Don’t confuse it with

Memphis Milano – the name is a red herring: no direct lineage, only a loose visual comparison. The 1980s movement was a deliberate provocation by named designers; Alegria was a scalable production system. Vaporwave’s borrowing from Memphis is real inheritance; Corporate Memphis’s is a nickname.

The recipe

The actual scope from style-scopes.css – the CSS that painted the stage above.

/* ===== style: corporate-memphis ===== */
/* Alegria, 2017: friendly geometric everything – the produced-at-scale
   warmth its own adopters walked away from. Documented as a caution. */
[data-style='corporate-memphis'] {
  --bg-page: #f2f5fb;
  --bg-raised: #ffffff;
  --bg-active: #e4eaf6;
  --border-default: #6c7d9e;
  --border-hover: #55668c;
  --border-input: #6c7d9e;
  --text-primary: #23324e;
  --text-secondary: #4a5b7d;
  --accent-solid: #5a48d6;
  --accent-solid-hover: #4837b3;
  --accent-text: #5343c9;
  --on-accent: #ffffff;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --shadow-1: 0 6px 18px rgba(35, 50, 78, 0.1);
  --shadow-2: 0 10px 26px rgba(35, 50, 78, 0.14);
  --font-sans: 'Poppins', system-ui, sans-serif;
}
[data-style='corporate-memphis'] .sty-btn {
  border-radius: var(--radius-l);
}
/* Vignette: two abstract figures – capsule bodies, tiny heads, elastic
   proportions – performing generic wholesomeness at a ground line. */
[data-style='corporate-memphis'] .sty-art {
  border: none;
  background-color: #e9eefb;
  background-image:
    radial-gradient(circle at 34px 26px, #23324e 0 7px, rgba(35, 50, 78, 0) 8px),
    radial-gradient(circle at 96px 34px, #23324e 0 7px, rgba(35, 50, 78, 0) 8px);
}
[data-style='corporate-memphis'] .sty-art > i {
  opacity: 1;
  border-radius: 999px;
}
[data-style='corporate-memphis'] .sty-art .sty-art-a {
  inset: 34px auto auto 22px;
  width: 24px;
  height: 58px;
  background: #5a48d6;
  transform: rotate(10deg);
}
[data-style='corporate-memphis'] .sty-art .sty-art-b {
  inset: 42px auto auto 86px;
  width: 22px;
  height: 52px;
  background: #2fa87f;
  transform: rotate(-12deg);
}
[data-style='corporate-memphis'] .sty-art .sty-art-c {
  inset: auto auto 10px 14px;
  width: 70%;
  height: 8px;
  background: #c3cfe8;
}
/* Hover: the friendly bounce – relentless approachability. */
.sty-card[data-style='corporate-memphis']:hover {
  transform: translateY(-3px);
}
/* ===== end corporate-memphis ===== */

Prompt vocabulary

Meant to be copied, not paraphrased – anchors beat adjectives when briefing an agent.

  • Alegria-style flat illustration
  • disproportionate long limbs
  • purple or blue non-naturalistic skin tone
  • minimal facial features
  • flat solid colour fills
  • generic wholesome activity poses

Exemplars

Named links out – the vignettes above are reconstructions, never screenshots (ADR #006).

  • Facebook/Meta's original Alegria system – the origin, now era-appropriate rather than current
  • Slack's pre-2022 illustration system – dropped
  • WeTransfer's file-transfer-moment illustrations – era-appropriate