Camouflage

카무플라주

Irregular, interlocking blotches deliberately overlapped to break up an outline rather than to look decorative.

Also known as: 카모위장무늬
···
html
<div class="cm"></div><span class="tag">camouflage</span>
css
.cm{position:absolute;inset:-10%;background-color:#6b7150;
  background-image:
    radial-gradient(ellipse 90px 60px at 20% 30%,#4a4f32 60%,transparent 74%),
    radial-gradient(ellipse 70px 90px at 65% 15%,#857a4f 60%,transparent 74%),
    radial-gradient(ellipse 100px 70px at 82% 62%,#2f331f 60%,transparent 74%),
    radial-gradient(ellipse 60px 80px at 35% 78%,#857a4f 60%,transparent 74%),
    radial-gradient(ellipse 85px 55px at 4% 80%,#4a4f32 60%,transparent 74%);
  background-size:260px 260px;
  filter:blur(5px);
  animation:pan 20s linear infinite}
@keyframes pan{to{background-position:260px 0}}
.tag{position:absolute;left:10px;bottom:8px;padding:3px 9px;border-radius:999px;background:rgba(30,32,18,.8);
  color:#dcd8bd;font:600 10px/1.5 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.03em}

The word itself comes from French slang "camoufler," to disguise, and military use exploded through the two World Wars — France's WWI camouflage units are the well-known starting point. The US "Woodland" (M81) pattern settled into its now-familiar form between 1948 and 1981, and pixel-block "digital camo" (like MARPAT) arrived in the 2000s, based on research suggesting fractal, pixel-scale patterns disrupt the human eye's edge detection better than smooth blobs do at a distance.

In fashion it broke free of military gear in the 1990s, when hip-hop and streetwear culture adopted it and turned it into a mainstream pattern in its own right.

Structurally the defining rule is that nothing aligns — irregular organic blotches in three to five earth tones, sized differently, overlapping with no underlying grid. In CSS, several radial-gradient blotches at different positions and sizes stack together, then filter: blur() softens every edge so it reads as a naturally bled stain rather than a printed outline.

When to use

Use for outdoor/tactical branding and streetwear texture. Avoid pairing it with real military insignia or rank marks.