Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
932d2cf
feat(system-time): add SystemTime type and update resolvers for syste…
elibosley Oct 9, 2025
3a21b62
feat(activation): enhance activation modal with timezone selection an…
elibosley Oct 9, 2025
ed8c5a9
test(activation): update tests for activation modal and steps
elibosley Oct 9, 2025
803824c
feat(activation): add Plugins Step to activation process
elibosley Oct 10, 2025
58f4c17
fix(emcmd): improve error logging for CSRF token retrieval
elibosley Oct 10, 2025
d2ce627
feat(upgrade): implement upgrade onboarding system for Unraid OS
elibosley Oct 10, 2025
c25eca8
feat(activation): enhance ActivationPluginsStep and update tests
elibosley Oct 10, 2025
7834c49
feat(api-config): enhance ApiConfigPersistence with shutdown handling
elibosley Oct 10, 2025
68cd5e4
feat(api-config): integrate OS version tracking with new OsVersionTra…
elibosley Oct 13, 2025
f5564a4
feat(onboarding): implement upgrade step completion tracking
elibosley Oct 13, 2025
b1337fd
refactor(api-schema): reorganize RClone types in generated schema
elibosley Oct 13, 2025
dea4b89
feat(onboarding): update OnboardingTracker to support dynamic OS vers…
elibosley Oct 13, 2025
cb06648
feat: onboarding flows simplified
elibosley Oct 13, 2025
9a06af2
refactor(activation): update activation components for improved local…
elibosley Oct 14, 2025
0b3e78e
test(activation): enhance ActivationCodeModal tests with Vue app inte…
elibosley Oct 14, 2025
99bb59d
fix: pnpm lock
elibosley Oct 14, 2025
e7828c3
refactor(onboarding): remove unnecessary fields from UpgradeStep type
elibosley Oct 14, 2025
ff6c4af
refactor(system-time): integrate ConfigService for state management
elibosley Oct 14, 2025
e0f6ee5
feat(onboarding): add permissions for completing upgrade steps
elibosley Oct 14, 2025
7d95884
test(customization): add test for omitting upgrade metadata with inco…
elibosley Oct 14, 2025
0d9b4c3
refactor(activation): remove unused i18n import from WelcomeModal com…
elibosley Oct 14, 2025
b521514
feat(config): enhance config parsing and state management
elibosley Oct 14, 2025
1abaf2c
feat(onboarding): implement upgrade marker for version tracking
elibosley Oct 15, 2025
cae5111
feat(onboarding): enhance version tracking and upgrade marker handling
elibosley Oct 15, 2025
e0a442a
feat(onboarding): implement first boot completion tracking in Onboard…
elibosley Oct 15, 2025
b2d89b2
fix(log): update time format in logging configuration
elibosley Oct 15, 2025
f612aaa
refactor(activation): clean up ActivationModal component and remove u…
elibosley Oct 15, 2025
3f4ac7a
feat(activation): enhance upgrade step handling in ActivationModal
elibosley Oct 15, 2025
d4e93f1
feat(activation): add titles, descriptions, and icons to upgrade step…
elibosley Oct 15, 2025
da381b5
feat(plugin): implement plugin installation tracking and management
elibosley Oct 15, 2025
2decc23
feat(activation): enhance plugin installation flow and UI feedback
elibosley Oct 15, 2025
3f41cf1
fix(plugins): refine error and success handling during plugin install…
elibosley Oct 16, 2025
b40e733
feat(activation): improve plugin installation status handling and UI …
elibosley Nov 10, 2025
77d001c
fix(imports): standardize import statements and correct module order
elibosley Dec 22, 2025
f959f95
refactor(theme): standardize theme loading method across components
elibosley Dec 22, 2025
0df7926
refactor(theme): update theme store methods in tests to use fetchTheme
elibosley Dec 22, 2025
31c3383
feat(onboarding): implement onboarding reset functionality and new ad…
elibosley Dec 23, 2025
ae8c8a4
feat(onboarding): introduce onboarding state management and enhancements
elibosley Dec 23, 2025
fa2ee15
refactor(onboarding): replace UButton with Button component for consi…
elibosley Dec 25, 2025
3451f52
feat(activation): enhance onboarding step management and feedback
elibosley Dec 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion @tailwind-shared/css-variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
--ui-text-toned: var(--ui-color-neutral-300);
--ui-text: var(--ui-color-neutral-200);
--ui-text-highlighted: white;
--ui-text-inverted: var(--ui-color-neutral-900);
--ui-text-inverted: var(--ui-color-neutral-300);

Comment on lines 96 to 98
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Restore contrast for inverted text in dark mode.

Switching --ui-text-inverted to var(--ui-color-neutral-300) makes inverted text nearly indistinguishable on its paired --ui-bg-inverted (still white), breaking readability and failing WCAG contrast. Keep a dark value (e.g., var(--ui-color-neutral-900)) for inverted text.

🤖 Prompt for AI Agents
In @tailwind-shared/css-variables.css around lines 96 to 98, the variable
--ui-text-inverted was changed to var(--ui-color-neutral-300) which reduces
contrast against the inverted background (still white); revert or set
--ui-text-inverted to a dark neutral (for example var(--ui-color-neutral-900))
so inverted text remains dark and meets WCAG contrast requirements. Ensure the
selected value provides sufficient contrast with --ui-bg-inverted (white) and
update the variable accordingly.

/* Nuxt UI Design Tokens - Background (Dark) */
--ui-bg: var(--ui-color-neutral-900);
Expand Down
Loading
Loading