Beautiful, ready-to-use Streamlit components with neon aesthetics. Streamlit apps that don't look like Streamlit apps.
Project description
๐จ NeonUI
Streamlit apps that don't look like Streamlit apps.
Beautiful, ready-to-use Streamlit components with 5 stunning themes and glassmorphism magic. โจ
โจ Live Demo ยท ๐ Documentation ยท ๐จ Themes ยท ๐ Made by Vivi
๐ Why NeonUI?
Ever built a Streamlit app and thought "this looks... functional but boring"? ๐
NeonUI transforms your Streamlit apps into stunning, production-ready interfaces with just ONE line of code. No CSS knowledge needed. No component headaches. Just beautiful UIs, instantly.
from neonui import apply_theme
apply_theme("cosmic_purple") # That's it. Seriously. โจ
๐จ Themes
Choose from 5 gorgeous, hand-crafted themes:
Theme Vibe Best For
๐ Cosmic Purple Deep space with starry backgrounds and electric purple glows AI apps, chatbots, futuristic dashboards
๐น๏ธ Neon Tokyo Cyberpunk arcade with CRT scanlines and pixel fonts Gaming apps, developer tools, retro projects
๐ Strawberry Matcha Cute cottagecore with sage green and pink pastels Personal apps, journals, cozy tools
๐ Aurora Northern lights with flowing rainbow gradients Creative tools, art apps, portfolio sites
๐ Midnight Elegant minimal dark with silver accents Business dashboards, luxury apps, portfolios
๐ Installation
Bash
pip install neonui
That's it! You're ready to make beautiful apps! โจ
โก Quick Start
1. Basic Usage
Python
import streamlit as st
from neonui import apply_theme
# Apply your favorite theme
apply_theme("cosmic_purple")
# Build your app as normal - it'll look STUNNING!
st.title("My Beautiful App")
st.write("This looks amazing now! ๐")
if st.button("Click me"):
st.success("So pretty!")
2. Available Themes
Python
from neonui import apply_theme
apply_theme("cosmic_purple") # ๐ Deep space vibes
apply_theme("neon_tokyo") # ๐น๏ธ Cyberpunk arcade
apply_theme("strawberry_matcha") # ๐ Cute cottagecore
apply_theme("aurora") # ๐ Northern lights
apply_theme("midnight") # ๐ Elegant dark
3. List All Themes
Python
from neonui import list_themes
themes = list_themes()
print(themes)
# ['cosmic_purple', 'neon_tokyo', 'strawberry_matcha', 'aurora', 'midnight']
4. Get Theme Info
Python
from neonui import get_theme_info
info = get_theme_info("cosmic_purple")
print(info["description"])
print(info["colors"])
๐ฏ Bonus Utilities
Hide Streamlit Defaults
Python
from neonui import hide_streamlit_defaults
hide_streamlit_defaults() # Removes menu, footer, header
Inject Custom CSS
Python
from neonui import inject_css
inject_css("""
.my-custom-class {
color: purple;
}
""")
Custom Backgrounds
Python
from neonui import set_page_background
# Solid color
set_page_background(color="#0a0011")
# Gradient
set_page_background(gradient="linear-gradient(135deg, #667eea, #764ba2)")
# Image
set_page_background(image_url="https://example.com/bg.jpg")
๐ก Real-World Example
Build a stunning dashboard in seconds:
Python
import streamlit as st
from neonui import apply_theme
apply_theme("aurora")
st.title("๐ My Dashboard")
col1, col2, col3, col4 = st.columns(4)
col1.metric("Revenue", "$12K", "+8%")
col2.metric("Users", "1,234", "+12%")
col3.metric("Growth", "45%", "+5%")
col4.metric("Rating", "4.9", "+0.2")
tab1, tab2 = st.tabs(["๐ Overview", "๐ฏ Details"])
with tab1:
st.write("Beautiful, isn't it?")
with tab2:
if st.button("Take Action", type="primary"):
st.balloons()
Your app now looks like a premium product! ๐
๐จ What Makes NeonUI Different?
โจ Zero configuration - Import and apply, that's it!
๐ฏ Streamlit-native - Works with ALL Streamlit widgets automatically
๐ 5 curated themes - Hand-crafted with real design principles
๐ Google Fonts included - Loaded automatically per theme
๐ฑ Responsive - Looks great on all screen sizes
๐ MIT License - Free for personal and commercial use
๐ซ No dependencies - Just Streamlit, that's it!
โก Lightweight - Minimal overhead, maximum beauty
<div align="center">
๐ Cosmic Purple
Deep space vibes with starry backgrounds
๐น๏ธ Neon Tokyo
Cyberpunk arcade with CRT scanlines
๐ Strawberry Matcha
Cute cottagecore aesthetic
๐ Aurora
Northern lights with flowing gradients
๐ Midnight
Elegant minimal luxury
๐ Try the Live Demo to see them all in action!
</div>
๐ฃ๏ธ Roadmap
โ
v0.1.0 (Current)
5 gorgeous themes
Theme switching API
CSS injection utilities
Live demo app
๐ง v0.2.0 (Coming Soon)
Custom components (cards, badges, chat bubbles)
More themes based on community requests
Component-level theme overrides
Animation utilities
๐ v0.3.0 (Planned)
Dashboard templates
Chart theme integration
Dark/light mode toggle
Theme customization API
๐ค Contributing
Contributions are welcome! Whether it's:
๐ Bug reports
๐ก Feature suggestions
๐จ New theme ideas
๐ Documentation improvements
โญ Just starring the repo!
Open an issue or PR at github.com/bistighosh16/neonui
๐ License
MIT License ยฉ 2025 Vivi
Free to use for personal and commercial projects. Attribution appreciated but not required! ๐
๐ Show Your Support
If NeonUI made your Streamlit app more beautiful, please consider:
โญ Starring this repo
๐ฆ Sharing on Twitter/LinkedIn
โ Following me on GitHub
<div align="center">
Made with ๐ by Vivi
Because Streamlit apps deserve to look beautiful.
โฌ Back to Top
</div> ```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neonui-0.1.0.tar.gz.
File metadata
- Download URL: neonui-0.1.0.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cb9d7dc5d4536bc29c3411b55601988d0736fbc9a0332447aeec14a7577b0af
|
|
| MD5 |
64410b2aaec4e59f3cb99f399583ccfd
|
|
| BLAKE2b-256 |
421445225bd6afd90e588669e3ac9ae8a592ceebf7960c7ae3a5fd522782d448
|
File details
Details for the file neonui-0.1.0-py3-none-any.whl.
File metadata
- Download URL: neonui-0.1.0-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3effa39361ea6f4e1213106366866aef11e5616bca42c97463847233be366b7c
|
|
| MD5 |
b253f5fb0fc0f6007639b2d31440ea51
|
|
| BLAKE2b-256 |
eb6d02116a79ebab1c8d3044df80b91ff491e0d88dc8cab6ee583006f3251562
|