style(ui): update color scheme and fix styling inconsistencies

- Change grey to gray for consistency in CSS class names
- Update page title and add favicon
- Improve button and background colors for better contrast
- Fix mobile menu script path
This commit is contained in:
abdullahalam123
2025-11-07 11:10:22 +05:30
parent f40108627e
commit 400ec9aadf
2 changed files with 21 additions and 17 deletions

View File

@@ -1349,7 +1349,7 @@ function createNodeElement(node, level = 0) {
const textColorClass = getTextColor(node.color);
const div = document.createElement('div');
div.className = `flex items-center gap-2 p-2 rounded border border-grey-200 ${colorClass} ${highlight} ${isSelected ? 'ring-2 ring-blue-500' : ''} hover:bg-gray-50`;
div.className = `flex items-center gap-2 p-2 rounded border border-gray-200 ${colorClass} ${highlight} ${isSelected ? 'ring-2 ring-blue-500' : ''} hover:bg-gray-50`;
if (batchMode) {
const checkbox = document.createElement('input');