diff --git a/app/components/DS/buttonish.rb b/app/components/DS/buttonish.rb index e85169191..bd8894be6 100644 --- a/app/components/DS/buttonish.rb +++ b/app/components/DS/buttonish.rb @@ -17,15 +17,15 @@ class DS::Buttonish < DesignSystemComponent icon_classes: "text-secondary" }, outline_destructive: { - container_classes: "text-destructive border border-secondary bg-transparent hover:bg-gray-100 theme-dark:hover:bg-gray-700", + container_classes: "text-destructive border border-secondary bg-transparent hover:bg-container-inset-hover", icon_classes: "text-secondary" }, ghost: { - container_classes: "text-primary bg-transparent hover:bg-gray-100 theme-dark:hover:bg-gray-700", + container_classes: "text-primary bg-transparent hover:bg-container-inset-hover", icon_classes: "text-secondary" }, icon: { - container_classes: "hover:bg-gray-100 theme-dark:hover:bg-gray-700", + container_classes: "hover:bg-container-inset-hover", icon_classes: "text-secondary" }, icon_inverse: { diff --git a/app/javascript/controllers/password_validator_controller.js b/app/javascript/controllers/password_validator_controller.js index 4de9c6fd1..76cca812e 100644 --- a/app/javascript/controllers/password_validator_controller.js +++ b/app/javascript/controllers/password_validator_controller.js @@ -52,11 +52,11 @@ export default class extends Controller { // Update block lines sequentially based on total requirements met this.blockLineTargets.forEach((line, index) => { if (index < requirementsMet) { - line.classList.remove("bg-gray-200"); + line.classList.remove("bg-surface-inset"); line.classList.add("bg-green-600"); } else { line.classList.remove("bg-green-600"); - line.classList.add("bg-gray-200"); + line.classList.add("bg-surface-inset"); } }); } diff --git a/app/views/accounts/_tax_treatment_badge.html.erb b/app/views/accounts/_tax_treatment_badge.html.erb index 070e870ba..cd3823271 100644 --- a/app/views/accounts/_tax_treatment_badge.html.erb +++ b/app/views/accounts/_tax_treatment_badge.html.erb @@ -9,7 +9,7 @@ when :tax_advantaged "bg-purple-500/10 text-purple-600 theme-dark:text-purple-400" else - "bg-gray-500/10 text-secondary" + "bg-gray-tint-10 text-secondary" end %> "> diff --git a/app/views/accounts/new/_container.html.erb b/app/views/accounts/new/_container.html.erb index 67697da50..387a59f14 100644 --- a/app/views/accounts/new/_container.html.erb +++ b/app/views/accounts/new/_container.html.erb @@ -2,7 +2,7 @@ <%= render DS::Dialog.new do |dialog| %>
-
+
<% if back_path %> <%= render DS::Link.new( diff --git a/app/views/accounts/new/_method_selector.html.erb b/app/views/accounts/new/_method_selector.html.erb index f98fef36c..ac3c31909 100644 --- a/app/views/accounts/new/_method_selector.html.erb +++ b/app/views/accounts/new/_method_selector.html.erb @@ -10,7 +10,7 @@ <% end %> <% end %>> <%# Manual entry option %> - <%= link_to path, class: "flex items-center gap-4 w-full text-center text-primary focus:outline-hidden focus:bg-surface border border-transparent focus:border focus:border-gray-200 px-2 hover:bg-surface rounded-lg p-2" do %> + <%= link_to path, class: "flex items-center gap-4 w-full text-center text-primary focus:outline-hidden focus:bg-surface border border-transparent focus:border focus:border-secondary px-2 hover:bg-surface rounded-lg p-2" do %> <%= icon("keyboard") %> diff --git a/app/views/accounts/show/_activity.html.erb b/app/views/accounts/show/_activity.html.erb index 76de75102..a36407a1f 100644 --- a/app/views/accounts/show/_activity.html.erb +++ b/app/views/accounts/show/_activity.html.erb @@ -44,7 +44,7 @@ data: { controller: "auto-submit-form" } do |form| %>
-
+
<%= icon("search") %> <%= hidden_field_tag :account_id, @account.id %> <%= form.search_field :search, diff --git a/app/views/budget_categories/_allocation_progress.erb b/app/views/budget_categories/_allocation_progress.erb index af854fe00..bd162f5e0 100644 --- a/app/views/budget_categories/_allocation_progress.erb +++ b/app/views/budget_categories/_allocation_progress.erb @@ -5,7 +5,7 @@ <% if budget.available_to_allocate.negative? %>
<% else %> -
">
+
">
<% end %> <% if budget.available_to_allocate.negative? %> @@ -23,11 +23,11 @@

-
+
<% if budget.available_to_allocate.negative? %>
<% else %> -
+
<% end %>
diff --git a/app/views/budget_categories/_budget_category.html.erb b/app/views/budget_categories/_budget_category.html.erb index fc93282af..ff209f009 100644 --- a/app/views/budget_categories/_budget_category.html.erb +++ b/app/views/budget_categories/_budget_category.html.erb @@ -68,7 +68,7 @@ <%= format_money(budget_category.budgeted_spending_money) %> <% if budget_category.inherits_parent_budget? %> - <%= t("reports.budget_performance.shared") %> + <%= t("reports.budget_performance.shared") %> <% end %>
<% if budget_category.suggested_daily_spending.present? %> diff --git a/app/views/budgets/_budget_donut.html.erb b/app/views/budgets/_budget_donut.html.erb index 8879d9bfc..8e0520b37 100644 --- a/app/views/budgets/_budget_donut.html.erb +++ b/app/views/budgets/_budget_donut.html.erb @@ -4,7 +4,7 @@
<% if budget.initialized? %> -
+
Spent
diff --git a/app/views/categories/_form.html.erb b/app/views/categories/_form.html.erb index 1f3e5fbeb..1577f8eb4 100644 --- a/app/views/categories/_form.html.erb +++ b/app/views/categories/_form.html.erb @@ -14,7 +14,7 @@
">
-

Color

+

Color

<% Category::COLORS.each do |color| %>