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.css
App.css
🌞 Light Mode
Light mode variables are defined under the :root
selector.
Example:
🌙 Dark Mode
Dark mode variables are defined under the .dark
class.
Example:
⚙️ How to Change Colors
To customize the theme:
Open
src/index.css
orApp.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