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:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user