# blendMode(NORMAL)

**URL:** https://discourse.processing.org/t/blendmode-normal/9093
**Category:** Coding Questions
**Created:** [March 7, 2019, 9:27pm UTC](https://discourse.processing.org/t/blendmode-normal/9093 "2019-03-07T21:27:52Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![gregorfa](https://avatars.discourse-cdn.com/v4/letter/g/5f9b8f/32.png) [@gregorfa](https://discourse.processing.org/u/gregorfa)
#### Post date: [March 7, 2019, 9:27pm UTC](https://discourse.processing.org/t/blendmode-normal/9093/1 "2019-03-07T21:27:52Z")

</div>

blendMode(NORMAL) doesn’t seem to work here. If you use another mode (DARKEST for example) it will change, but revert to normal does not seem to work. What am I missing?

```auto
function setup() {
createCanvas(400, 400);
}

function draw() {
background(220);

blendMode(LIGHTEST);
strokeWeight(30);
stroke(80, 150, 255);
line(25, 25, 75, 75);
//this does not seem to have any effect
blendMode(NORMAL);

stroke(255, 50, 50);
line(75, 25, 25, 75);
noLoop(0);

}

```

---

<div class="post-metadata">

### Author: ![GoToLoop](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/gotoloop/32/86_2.png) [@GoToLoop](https://discourse.processing.org/u/GoToLoop)
#### Post date: [March 7, 2019, 9:32pm UTC](https://discourse.processing.org/t/blendmode-normal/9093/2 "2019-03-07T21:32:53Z")

</div>

> <https://github.com/processing/p5.js/issues/3579>

---

<div class="post-metadata">

### Author: ![jeremydouglass](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/jeremydouglass/32/20_2.png) [@jeremydouglass](https://discourse.processing.org/u/jeremydouglass)
#### Post date: [March 10, 2019, 4:40pm UTC](https://discourse.processing.org/t/blendmode-normal/9093/3 "2019-03-10T16:40:38Z")

</div>

It seems like responding on the github issue with details about the browser and hardware might be helpful…
