First Place Winner of BCIT Hack The Break 2026 Hackathon [devpost]
QuickStyle is a tool to help style your react project quickly and easily.
Through an element selector, you're able to edit your UI directly on the page and see it update in real time.
Once you're happy with those changes, click save and QuickStyle will update your source code to match!
For projects using Vite+React+Tailwind
Available at npmjs.com
QuickStyle will take your tailwind styling to the next level!
npm install quick-style-hackathon
- Setup vite.config.js:
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';
import { quickStyle } from 'quick-style-hackathon';
export default defineConfig({
plugins: [
react({
babel: {
plugins: ["quick-style-hackathon/babel-plugin"],
},
}),
tailwindcss(),
quickStyle(),
],
});
- Add QuickStyle component to your file
import { QuickStyle } from 'quick-style-hackathon';
import 'quick-style-hackathon/style.css';
function App() {
return (
<>
<QuickStyle />
{/* Your App Code */}
</>
);
}
