Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ export function ActionSelector({
}}
style={{
outline: "none",
border: "1px solid var(--blue-11)",
background: "var(--blue-1)",
border: "1px solid var(--accent-11)",
background: "var(--accent-1)",
borderRadius: "var(--radius-3)",
}}
>
Expand All @@ -230,7 +230,7 @@ export function ActionSelector({
)}

{title && (
<Text size="1" weight="medium" className="text-blue-11" title={title}>
<Text size="1" weight="medium" className="text-accent-11" title={title}>
{compactHomePath(title)}
</Text>
)}
Expand Down
20 changes: 10 additions & 10 deletions apps/code/src/renderer/components/action-selector/OptionRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ export function OptionRow({
? "var(--gray-6)"
: "var(--gray-3)"
: isSelected
? "var(--blue-8)"
? "var(--accent-8)"
: isHovered
? "var(--blue-4)"
: "var(--blue-3)",
? "var(--accent-4)"
: "var(--accent-3)",
display: "inline-flex",
height: "28px",
}}
Expand All @@ -93,7 +93,7 @@ export function OptionRow({
isSelected
? isCancel
? "text-gray-12"
: "text-blue-12"
: "text-accent-12"
: "text-gray-12"
}
>
Expand Down Expand Up @@ -124,9 +124,9 @@ export function OptionRow({

const displayText = compactHomePath(option.label);
const textClass = isSelected
? "text-blue-11"
? "text-accent-11"
: isHovered
? "text-blue-11"
? "text-accent-11"
: "text-gray-12";

return (
Expand Down Expand Up @@ -154,7 +154,7 @@ export function OptionRow({
userSelect: "none",
borderRadius: "var(--radius-2)",
background: isSelected
? "var(--blue-3)"
? "var(--accent-3)"
: isHovered
? "var(--gray-a3)"
: "transparent",
Expand All @@ -171,7 +171,7 @@ export function OptionRow({
>
<Text
size="1"
className={isSelected ? "text-blue-11" : "text-gray-11"}
className={isSelected ? "text-accent-11" : "text-gray-11"}
style={{ width: "1ch", flexShrink: 0, lineHeight: "16px" }}
>
{isSelected ? "›" : ""}
Expand All @@ -180,9 +180,9 @@ export function OptionRow({
size="1"
className={
isSelected
? "text-blue-11"
? "text-accent-11"
: isHovered
? "text-blue-11"
? "text-accent-11"
: "text-gray-11"
}
style={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function StepTabs({
onClick={() => onStepClick(i)}
style={{
borderRadius: "var(--radius-2)",
background: isCurrent ? "var(--blue-3)" : "transparent",
background: isCurrent ? "var(--accent-3)" : "transparent",
cursor: "pointer",
}}
>
Expand All @@ -42,7 +42,7 @@ export function StepTabs({
weight={isCurrent ? "medium" : "regular"}
className={
isCurrent
? "text-blue-11"
? "text-accent-11"
: isCompleted
? "text-green-11"
: "text-gray-11"
Expand Down
Loading