Changing Colors
The project uses Tailwind CSS with support for both light and dark themes. All global color variables are defined using CSS custom properties (--variable-name) and can be easily updated.
:root {
--primary: #e6d100;
--background: oklch(0.98 0 0);
--foreground: oklch(0.145 0 0);
...
}.dark {
--primary: #f7f258;
--background: oklch(0.145 0 0);
--foreground: oklch(0.985 0 0);
...
}Last updated