A powerful visual CSS customization tool for Gethomepage, featuring real-time preview and an intuitive interface for creating beautiful, responsive designs.
CSS.mp4
- Visual Editor: Interactive interface for CSS customization
- Live Preview: See your changes in real-time
- Theme Management:
- Built-in theme presets (Matrix, Ocean Deep, Dracula, Nord, etc.)
- Create and save custom themes
- Import/export configurations
- Comprehensive Styling Options:
- Text customization (fonts, colors)
- Border effects (static, animated gradients)
- Element-specific styling (tabs, widgets, cards, bookmarks)
- Interactive states (hover, focus)
- Backdrop filters and blur effects
- Feature Toggles: Enable/disable specific styling components
- Dark/Light Mode: Built-in theme switching
- Mobile-Optimized: Responsive design for all screen sizes
- Docker
- Docker Compose (optional, but recommended)
- A running instance of Gethomepage
docker run -d \
--name homepage-css-editor \
-p 5556:5556 \
-e PORT=5556 \
ghcr.io/10mfox/gethomepage-custom-css:latest- Create or update your
docker-compose.yml:
services:
homepage-css-editor:
container_name: Homepage-CSS-Editor
image: ghcr.io/10mfox/gethomepage-custom-css:latest
ports:
- "5556:5556"
environment:
- PORT=5556
restart: unless-stoppedAlternative configuration for Linux systems:
version: "3"
services:
homepage-css-editor:
image: ghcr.io/10mfox/gethomepage-custom-css:latest
container_name: Homepage-CSS-Editor
user: "1000:1000" # Replace with your user ID and group ID
ports:
- "5556:5556"
environment:
- PORT=5556
restart: unless-stopped- Deploy with Docker Compose:
docker compose up -d- The port number in the container mapping (
ports) must match thePORTenvironment variable - Choose any available port on your system
-
Access the Editor
- Open
http://localhost:5556(or your configured port) - Switch between dark/light mode using the theme toggle
- Open
-
Configure Features
- Use the "Feature Toggles" dropdown to enable desired options
- Options are grouped by function (borders, effects, appearance, etc.)
-
Customize Styles
- Adjust general settings (font, border width, radius, backdrop filter)
- Use color pickers for various elements
- Configure static or animated gradient borders
-
Manage Themes
- Try built-in presets from the dropdown
- Save your configurations as custom presets
- Import/export your settings
-
Preview and Export
- Use the live preview panel to verify changes
- Export your configuration when satisfied
When saving your configuration, two files are generated:
custom.css: The generated CSS file to use with Gethomepagecustom.css.json: Configuration file for the CSS Wizard
- Save your configuration using the "Save CSS" button
- Copy the contents of
custom.cssto your Gethomepage custom CSS file - Restart Gethomepage to apply changes
- Frontend Framework: React 18
- Build Tool: Vite
- Styling: Tailwind CSS 3
- Icons: Lucide React
- Container: Alpine-based Docker image
Tested and supported in:
- Chrome/Edge 120+
- Firefox 120+
- Safari 17+
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
- Clone the repository
- Install dependencies:
npm install - Start development server:
npm run dev - Build for production:
npm run build
Made with ❤️ for the Gethomepage community
