- pyproject.toml: add [tool.ruff] config suppressing E402/W293 globally, F841/E741/E702 in tests, E741 in scripts - inventory.py: split semicolon import (E702) - recipes.py: fix logger -> log (F821 undefined name) - shopping.py: rename l -> lnk in list comprehension (E741) - format_conversion.py: noqa F841 on CUDA flag (used as future hook) - backfill_keywords.py: rename done -> _done (F841) - ingest_purplecarrot.py: drop == True comparison (E712) - Auto-fix: I001 import sorting, F401 unused imports across all files
10 lines
366 B
CSS
10 lines
366 B
CSS
/* Dark mode image treatment — app screenshots are light-mode only, soften them on slate */
|
|
[data-md-color-scheme="slate"] img:not([src*=".svg"]) {
|
|
filter: brightness(0.82) contrast(1.05);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* SVGs (icons, diagrams) inherit theme color naturally — no filter needed */
|
|
[data-md-color-scheme="slate"] img[src*=".svg"] {
|
|
filter: none;
|
|
}
|