# Genuary2026_LightFibBool

# LightsOfFibonacci

**LightsOfFibonacci** is coded in **LiveCodeLab** and uses the following ***Genuary2026 Prompts: Day*** 3 : ***FIbonacci***`(Through the Colors and movement used in the sketch)`, ***Day 7: Boolean Algebra***`(Used in the sequencing of the Sound)` and Day 6: Lights On/Off`(used in the background of light and dark).`

## Poetry

```ocaml
Light On
Light Off
Difference may appear

Sound On
Sound everywhere

Never Off
Fibonacci sequences
With high frequencies
```

## Video

%[https://youtu.be/aVJxutU1m28] 

## Code

### LiveCodeLab Code

```javascript
if time % 20 > 10

bpm 88 - (time % 20) * 3
play 'penta',  '--x- -xx- x  x --x- --x-'
play 'beepC',      '-x-- ---- x--x xxx-'
play 'beepA',      '--x- --xx-- --x- --xx--'
play 'snap',   '--x- -x--x-- -xx- --x--'
play 'tense',      'x--x  x --x- x -x-- -x--'
play 'voltage',    'x-x- -x-- x-xx x-xx'
play 'cosmos', '-x-x ---x x-x  x- --xx'

	simpleGradient color(233,144,89),color(89, 55, 34),color(34, 21, 13)
	stroke color(8, 5, 3)
	fill(3,2,1)
	move
	ball sin(wave(0)),cos(wave(1)),cos(wave(1))

else
	
bpm 70 - (time % 20) * 3
play 'lowFlash',  '--x- --x-'
play 'beepA',      '-x-- xx--- x--x xxx-'
play 'beepC',      '--x---xx-- --x- --xx--'
play 'downstairs',   '--xxx--x--x-- -xx- --x--'
play 'tense',      'x--x-x--x- x -x-- -x--'
play 'mouth',    'x-x--x--x-x---x x-xx'
play 'warm', '-x-x---x x-x-x- --xx'

simpleGradient color(0,1,2),color(1,2,3),color(2,3,5)
	ambientLight color(233,144,89)
	stroke color(89, 55, 34)
	fill color(55,34,21)
	rotate 0,sin(wave(1)),sin(wave(2)), sin(wave(3))
	box sin(time % 5), sin(time % 3), sin(time % 2)
```
