├── README.md ├── index.html └── screenshot.png /README.md: -------------------------------------------------------------------------------- 1 | # 8bit Canvas 2 | 3 | A basic implementation of a canvas to draw pixel art, written in less than 250 rows of code thanks to Vue.js and CSS Grid. 4 | 5 | The idea is quite simple: we make a grid of tiny divs that represent the pixels and then we change a certain div bg color, according to the currently selected color, once the mouse clicks (or is "active") on that div. 6 | 7 | I made it because I needed a quick way to test different color combinations for some 8bit art - that's why you see the "color classes logic" with the 'shuffle/random colors' buttons. 8 | 9 | **Live version**: [ndrbrt.github.io/8bit-canvas/](https://ndrbrt.github.io/8bit-canvas/) 10 | 11 |  12 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |