From 532932057f11b93ae77b666df0a4e3b0dec68638 Mon Sep 17 00:00:00 2001 From: dtoro Date: Fri, 10 Apr 2026 16:13:54 +0200 Subject: [PATCH] style: mule ASCII placeholder in sidebar, bump muted text contrast MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace Info icon with braille mule art in the right sidebar empty state. Lighten text-muted (#a8997d → #c4b599) and text-faint (#5e5448 → #7a6e5e) for better readability across the app. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../src/components/layout/RightSidebar.tsx | 18 ++++++++++++++++-- frontend/src/index.css | 4 ++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/layout/RightSidebar.tsx b/frontend/src/components/layout/RightSidebar.tsx index 454e675..47534d0 100644 --- a/frontend/src/components/layout/RightSidebar.tsx +++ b/frontend/src/components/layout/RightSidebar.tsx @@ -1,5 +1,5 @@ import { useState } from 'react' -import { X, Star, Info, ShoppingBasket, Trash2, Plus, PanelRightClose } from 'lucide-react' +import { X, Star, ShoppingBasket, Trash2, Plus, PanelRightClose } from 'lucide-react' import clsx from 'clsx' import { useMutation, useQueryClient } from '@tanstack/react-query' import { usePhotoStore } from '../../store/photoStore' @@ -192,7 +192,21 @@ export function RightSidebar({ onCollapse }: RightSidebarProps) {
- +
{`⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⠀⠀⠀⠀⠀⠀⠀⠀
+⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⣿⡇⠀⣠⣤⠀⠀⠀⠀⠀
+⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⣿⡇⢸⣿⡟⠀⠀⠀⠀⠀
+⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⣿⣿⡿⠀⣿⡿⠁⠀⠀⠀⠀⠀
+⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠃⣼⡟⠁⠀⠀⠀⠀⠀⠀
+⠀⠀⠀⠀⠀⠀⠀⠀⣀⣀⣀⣤⣶⣿⣿⣿⣧⣀⠋⠀⠀⠀⠀⠀⠀⠀
+⠀⠀⠀⠀⠀⠀⠠⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡄⠀⠀⠀⠀⠀⠀
+⠀⠀⠀⢀⡀⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠻⣿⣿⡄⠀⠀⠀⠀⠀
+⠀⠀⢠⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣿⣿⣷⡀⠀⠀⠀⠀⠀
+⣠⣤⣿⣿⣿⣿⣿⣿⣿⣿⡿⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀⠀⠀⠀
+⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⠘⢿⣿⣿⣿⣿⣿⣿⣿⢿⡆⠀⠀
+⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠁⠀⠙⠛⠿⠿⣿⣿⠿⣾⡇⠀⠀
+⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡟⠁⠀⠀⠀⠀⠀⠀⠹⣿⡿⣦⠈⠁⠀⠀
+⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
+⠛⠛⠛⠛⠛⠛⠛⠛⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀`}

Select photos to view details

diff --git a/frontend/src/index.css b/frontend/src/index.css index 19d95a8..c6054cd 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -10,8 +10,8 @@ --color-surface-offset: #352c46; --color-border: rgba(240, 193, 136, 0.10); --color-text: #f0e6d2; - --color-text-muted: #a8997d; - --color-text-faint: #5e5448; + --color-text-muted: #c4b599; + --color-text-faint: #7a6e5e; --color-primary: #e8965a; --color-pick: #8aaa5a; --color-reject: #d06464;