https://github.com/du-cki/css-tweaks
A minimal web UI for generating sharable Discord CSS tweak URLs.
https://github.com/du-cki/css-tweaks
css discord jinja modded
Last synced: 2 months ago
JSON representation
A minimal web UI for generating sharable Discord CSS tweak URLs.
- Host: GitHub
- URL: https://github.com/du-cki/css-tweaks
- Owner: du-cki
- Created: 2025-05-18T09:37:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-11T22:48:15.000Z (5 months ago)
- Last Synced: 2026-01-12T02:27:39.801Z (5 months ago)
- Topics: css, discord, jinja, modded
- Language: CSS
- Homepage: https://css.faaz.dev
- Size: 114 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSS Tweaks
A stateless, crowdsourced CSS patch service. Users can select multiple CSS snippets and receive a single URL that combines them.
There is no database. The app uses deterministic **[CRC32](https://en.wikipedia.org/wiki/Cyclic_redundancy_check)** hashing to generate stable IDs based on filenames.
## Adding New Snippets
To contribute, submit a Pull Request adding a `.css` file to the `snippets/` directory. You can also use subfolders to categorize them (e.g., `snippets/cosmetics/my-fix.css`).
## Development (Local)
You can run the server directly with Go for quick iteration.
```bash
go run .
```
The site will be available at http://localhost:8080/.
Note: When running this way, the repository metadata will default to "dev" or "unknown". To see specific version metadata locally, you must manually provide the variables or use the production script below.
### Production
For deployment or to run the application with full metadata and containerization, use the provided script. It injects the correct version info into the build.
```bash
./run.sh
```