Themes
Theme Library
Customize CURSY Framework with pre-built themes. So everyone's sites don't look the same!
How Themes Work
Simply include a theme CSS file after the main CURSY Framework CSS. Themes override color variables and add custom styling while maintaining the same component structure.
<link rel="stylesheet" href="cursy.css">
<link rel="stylesheet" href="themes/neon-nights.css">
Available Themes
Creating Custom Themes
Theme Structure
Create a new CSS file that overrides CURSY variables:
/* themes/my-theme.css */
:root {
--cursy-green: #your-color;
--cursy-cyan: #your-color;
--cursy-purple: #your-color;
--cursy-orange: #your-color;
}
/* Add custom component overrides */
.btn-primary {
background: your-gradient;
}