DEV Community

Cover image for Pixel Lite - Accessibility-first UI kit available in many tech flavors
Sm0ke
Sm0ke

Posted on • Updated on

Pixel Lite - Accessibility-first UI kit available in many tech flavors

Hello Coders,

This article presents three open-source seed projects generated by AppSeed on top of Pixel Lite, a modern accessibility-first UI Kit crafted by Themesberg. Projects are released under the MIT license on Github, a license that permits unlimited hobby & commercial use. Being simple, tested, and production-ready starters, beginners can sharp their programming skills by using these projects as coding playgrounds.


Thank you! Content provided by AppSeed - App Generator.



For support, feel free to join AppSeed Discord server - 24/7 LIVE Service.


Pixel Lite - Free seed project coded in Django by AppSeed.


Pixel Lite - UI Kit

Pixel is a free, fully responsive, and modern Bootstrap 4 UI Kit that will help you build creative and professional websites. Use our components and sections, switch some Sass variables to build and arrange pages to best suit your needs.

The HTML version can be downloaded from the official product page or directly from Github (no difference in terms of source code).

The Kit is provided with a generous number of components and pre-built pages, carefully coded and styled by Themesberg.

A strong asset of this free UI Kit is the accessibility compliance with the latest standards. The product passes the WAVE evaluation tool and Achecker tool.


Pixel Lite - Flask version, hero section screen.


Pixel Lite - Flask version, pre-build pages.


Pixel UI - Flask version

The Flask version is bundled in a simple codebase, with database configuration, ORM, session-based authentication, and deployment tools for Docker, HEROKU.

App Links


The seed project can be compiled with ease just by following the instructions provided in the README file. Before you start, make sure you have Python3 installed and GIT command tool, to download the sources directly from the public repository.

Build instructions

$ # Clone the sources
$ git clone https://github.com/app-generator/flask-pixel-bootstrap-uikit.git
$ cd flask-pixel-bootstrap-uikit
$
$ # Virtualenv set up (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Install requirements
$ pip3 install -r requirements.txt
$
$ # Set the FLASK_APP environment variable
$ export FLASK_APP=run.py
$
$ # Start the application
$ flask run
$
$ # Access the app in the browser: http://127.0.0.1:5000/
Enter fullscreen mode Exit fullscreen mode

If all goes well, we can visit the app on the local address http://127.0.0.1:5000/. To unlock the private pages, please create a new user first.

Pixel UI Flask - UI Cards page.


Pixel UI - Django version

Django version is quite similar to the Flask project in terms of features, and also has a pretty easy set-up even for a beginner - App features:

  • SQLite Database, Django Native ORM
  • Modular design, clean/modular codebase
  • Session-Based Authentication, Forms validation
  • Deployment scripts: Docker, Gunicorn / Nginx

App Links


Build instructions

The app can be compiled with just a few lines of code, without leaving this page.

$ # Get the code
$ git clone https://github.com/app-generator/django-pixel-bootstrap-uikit.git
$ cd django-pixel-bootstrap-uikit
$
$ # Virtualenv set up (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Install modules - SQLite Storage
$ pip3 install -r requirements.txt
$
$ # Create tables
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Start the application (development mode)
$ python manage.py runserver 
$
$ # Access the web app in the browser: http://127.0.0.1:8000/
Enter fullscreen mode Exit fullscreen mode

By visiting the app in the browser we can see some really nice pages, provided by this amazing UI Kit.


Pixel UI - Django, the top section.


Pixel UI - Flask, cards.


Thanks for reading! For more seed projects or support, feel free to access the AppSeed platform.

Latest comments (0)