Breethe is a minimalistic single-file HTML page that turns your display into a pure orange breathing light effect. This can be useful for creating a calming ambient light or for decorative purposes.
- Simple and lightweight
- Pure orange breathing light effect
- Fullscreen mode for immersive experience
- Customizable colors and timing
-
Open with Chrome/Chromium:
- Simply open the
breethe.html
file with Chrome or Chromium browser. - Press
F11
to enter fullscreen mode.
- Simply open the
-
Command Line:
- To start the page in fullscreen mode from the command line, you can use the following command:
chromium-browser --start-fullscreen path/to/breethe.html
- Replace
path/to/breethe.html
with the actual path to thebreethe.html
file.
- To start the page in fullscreen mode from the command line, you can use the following command:
You can customize the breathing light effect by modifying the CSS variables in the <style>
section of the breethe.html
file. The variables are:
html {
--dark-color: #000;
--bright-color: #ff9100;
--cycle-time: 7s;
--delay-time: 1s;
}
--dark-color
: The darkest color in the breathing cycle. Default is#000
(black).--bright-color
: The brightest color in the breathing cycle. Default is#ff9100
(orange).--cycle-time
: The total time for one complete breathing cycle. Default is7s
(7 seconds).--delay-time
: The delay time before the cycle starts. Default is1s
(1 second).
You can change these values to customize the breathing effect to your liking.
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.