> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bfl.ml/llms.txt
> Use this file to discover all available pages before exploring further.

# Interior Design

> Use FLUX.2 to repaint walls, swap flooring, restyle rooms, and adjust lighting in existing interior photos for instant design visualization.

export const PromptDisplay = ({prompt}) => {
  const [copied, setCopied] = useState(false);
  const copy = () => {
    navigator.clipboard.writeText(prompt);
    setCopied(true);
    setTimeout(() => setCopied(false), 2000);
  };
  return <div className="not-prose" style={{
    marginTop: "1rem"
  }}>
      <div style={{
    backgroundColor: "#1a1a1a",
    borderRadius: "1rem",
    padding: "1.25rem 1.5rem",
    display: "flex",
    flexDirection: "column",
    gap: "1rem"
  }}>
        <p style={{
    color: "#e5e5e5",
    fontSize: "1rem",
    lineHeight: 1.6,
    margin: 0,
    fontFamily: "inherit"
  }}>
          {prompt}
        </p>
        <div style={{
    display: "flex",
    justifyContent: "flex-end"
  }}>
          <button onClick={copy} style={{
    backgroundColor: copied ? "#3d8a5b" : "var(--aspen-evergreen, #486A58)",
    color: "#fff",
    border: "none",
    borderRadius: "0.375rem",
    padding: "0.25rem 0.6rem",
    fontSize: "0.7rem",
    fontWeight: 600,
    cursor: "pointer",
    transition: "background-color 0.2s"
  }}>
            {copied ? "Copied!" : "Copy prompt"}
          </button>
        </div>
      </div>
    </div>;
};

FLUX.2 can transform interior spaces — repaint walls, swap flooring, restyle rooms, and adjust lighting. Upload a photo of a room and describe the changes for instant design visualization.

## Examples

### Repaint + new flooring

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/68c96e69fa8b75c57654b53c86e4ee30bec1b64b-1000x1500.png" alt="Original room" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/349503c181acbc1dd2299b795aaeb85058d6ce97-960x1440.png" alt="Room with new paint and parquet" />
</Columns>

<PromptDisplay prompt="The room is repainted and on the floor there is rustic wooden parquet" />

### Retro bedroom redesign

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/b756a70b1b5a1686aafe631deb31d88ca7525ddb-1600x1200.png" alt="Original bedroom" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/2c68e0993e9edfb0da47047ee83ea1e07fe1deea-1440x1072.png" alt="Retro-styled bedroom" />
</Columns>

<PromptDisplay prompt="Use this exact color palette to create a realistic and highly detailed retro bedroom design for interior design editorial" />

### Retro kitchen redesign

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/b756a70b1b5a1686aafe631deb31d88ca7525ddb-1600x1200.png" alt="Original kitchen" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/8a9dbb3f58996928353898c0722118d5c2b62675-1440x1072.png" alt="Retro-styled kitchen" />
</Columns>

<PromptDisplay prompt="Use this exact color palette to create a realistic and highly detailed retro kitchen design for interior design editorial" />

### Wall material + lighting change

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/fcf8733200ef32c62efc4495a3c4a2e3a84d8770-720x720.png" alt="Interior with original wall" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/ecdb341113008f51ce576c9d73a776b6fef31e3f-720x720.png" alt="Interior with black stone wall" />
</Columns>

<PromptDisplay prompt="Change the lighting to natural lighting, change the wall to black stone, and make the plants spill outward more" />

### Fill closet + add reflection

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/e9b8250e53d8d6f94c3069e53b3901f2f4795f4d-2248x1500.png" alt="Empty closet" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/0c8cd5b4074c7a16036c38d427ed6273cf5bb44b-1440x960.png" alt="Filled closet with mirror reflection" />
</Columns>

<PromptDisplay prompt="Fill the closet with everyday clothes in shades of blue, cream, and brown. Through the mirror, a man is visible wearing light blue wide-leg Levi's jeans and a white shirt, with his face obscured by the iPhone he is using to take the photo" />
