-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Update colors for for dark theme #1476 #1595
base: main
Are you sure you want to change the base?
Conversation
@Charlesnorris509 is attempting to deploy a commit to the Arc53 Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Hey, there seems to be a build error |
@dartpain would you be able to tell me whether the modifications made on the initial PR were accurate? |
… and improve overall consistency. It updates various styles related to background colors, text colors, modal backgrounds, table borders, and input field borders as outlined in the referenced Figma design specs.
Description:
This pull request addresses issue [#1476] by updating the color scheme for the dark theme to reduce bright colors and make the theme more suitable for dark mode. The changes include updating various color values in the Tailwind CSS configuration and the main CSS file.
### Changes Made:
_frontend/tailwind.config.cjs:
Updated the color values for different elements in the dark theme:
White text in dark theme: #E0E0E0
Modal background: #26272E
Table borders and other lines: #3D3D40
Input fields/dropdowns borders: #6A6A6A
frontend/src/index.css:
Updated the color values for different elements in the dark theme:
Background color for dark theme: #26272E
Text color for dark theme: #E0E0E0
Scrollbar track color for dark theme: #3D3D40
Table border and text color for dark theme: #3D3D40 and #E0E0E0
Input autofill background and text color for dark theme: #3D3D40 and #E0E0E0_