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.
π Location
You can find and edit these color variables in the following files:
src/index.cssApp.css
π Light Mode
Light mode variables are defined under the :root selector.
Example:
:root {
--primary: #e6d100;
--background: oklch(0.98 0 0);
--foreground: oklch(0.145 0 0);
...
}π Dark Mode
Dark mode variables are defined under the .dark class.
Example:
.dark {
--primary: #f7f258;
--background: oklch(0.145 0 0);
--foreground: oklch(0.985 0 0);
...
}βοΈ How to Change Colors
To customize the theme:
Open
src/index.cssorApp.css.Locate the variable you'd like to change, such as
--primary.Update its value to match your desired color.
Example:
Tailwind will automatically apply the new styles based on your variable values.
Last updated