Symptom:
@@ -537,7 +537,7 @@ function QuestionCard({ question: q, answer, setAnswer }: { question: SurveyQues
onClick={() => setAnswer(q.id, opt)}
className="flex items-start gap-3 px-3.5 py-3 sm:px-4 rounded-[9px] text-left text-[13px] sm:text-sm transition-all duration-150 select-none"
style={{
- background: answer === opt ? 'rgba(249, 115, 22, 0.10)' : 'rgba(16, 17, 20, 0.6)',
+ background: answer === opt ? 'rgba(96, 165, 250, 0.10)' : 'rgba(16, 17, 20, 0.6)',
border: `1px solid ${answer === opt ? 'var(--color-primary)' : 'var(--color-border-default)'}`,
color: answer === opt ? 'var(--color-foreground)' : 'var(--color-muted-foreground)',
}}
@@ -564,7 +564,7 @@ function QuestionCard({ question: q, answer, setAnswer }: { question: SurveyQues
}}
className="flex items-start gap-3 px-3.5 py-3 sm:px-4 rounded-[9px] text-left text-[13px] sm:text-sm transition-all duration-150 select-none"
style={{
- background: selected ? 'rgba(249, 115, 22, 0.10)' : 'rgba(16, 17, 20, 0.6)',
+ background: selected ? 'rgba(96, 165, 250, 0.10)' : 'rgba(16, 17, 20, 0.6)',
border: `1px solid ${selected ? 'var(--color-primary)' : 'var(--color-border-default)'}`,
color: selected ? 'var(--color-foreground)' : 'var(--color-muted-foreground)',
}}
@@ -593,7 +593,7 @@ function QuestionCard({ question: q, answer, setAnswer }: { question: SurveyQues
background: 'rgba(16, 17, 20, 0.6)',
border: '1px solid var(--color-border-default)',
}}
- onFocus={e => { e.currentTarget.style.borderColor = 'var(--color-primary)'; e.currentTarget.style.boxShadow = '0 0 0 3px rgba(249, 115, 22, 0.10)' }}
+ onFocus={e => { e.currentTarget.style.borderColor = 'var(--color-primary)'; e.currentTarget.style.boxShadow = '0 0 0 3px rgba(96, 165, 250, 0.10)' }}
onBlur={e => { e.currentTarget.style.borderColor = 'var(--color-border-default)'; e.currentTarget.style.boxShadow = 'none' }}
/>
)}
@@ -717,7 +717,7 @@ function DragRank({ items, onChange }: { items: string[]; onChange: (items: stri
onTouchStart={() => handleTouchStart(idx)}
className="flex items-center gap-2.5 sm:gap-3 px-3 py-3 sm:px-4 sm:py-2.5 rounded-[9px] text-[13px] sm:text-sm transition-all duration-150 select-none"
style={{
- background: overIdx === idx ? 'rgba(249, 115, 22, 0.10)' : 'rgba(16, 17, 20, 0.6)',
+ background: overIdx === idx ? 'rgba(96, 165, 250, 0.10)' : 'rgba(16, 17, 20, 0.6)',
border: `1px solid ${overIdx === idx || draggingIdx === idx ? 'var(--color-primary)' : 'var(--color-border-default)'}`,
opacity: draggingIdx === idx ? 0.5 : 1,
cursor: 'grab',
diff --git a/frontend/src/pages/account/BrandingSettingsPage.tsx b/frontend/src/pages/account/BrandingSettingsPage.tsx
index 7196502c..7fb3fbf6 100644
--- a/frontend/src/pages/account/BrandingSettingsPage.tsx
+++ b/frontend/src/pages/account/BrandingSettingsPage.tsx
@@ -137,7 +137,7 @@ export function BrandingSettingsPage() {
className={cn(
'mt-1 w-full rounded-lg border border-border bg-card px-3 py-2 text-sm',
'text-foreground placeholder:text-muted-foreground',
- 'focus:border-[rgba(249,115,22,0.3)] focus:outline-none focus:ring-1 focus:ring-primary/20'
+ 'focus:border-[rgba(96,165,250,0.3)] focus:outline-none focus:ring-1 focus:ring-primary/20'
)}
/>
@@ -163,7 +163,7 @@ export function BrandingSettingsPage() {
className={cn(
'mt-1 w-full rounded-lg border border-border bg-card px-3 py-2 text-sm',
'text-foreground placeholder:text-muted-foreground font-mono',
- 'focus:border-[rgba(249,115,22,0.3)] focus:outline-none focus:ring-1 focus:ring-primary/20'
+ 'focus:border-[rgba(96,165,250,0.3)] focus:outline-none focus:ring-1 focus:ring-primary/20'
)}
/>
@@ -212,7 +212,7 @@ export function BrandingSettingsPage() {
className={cn(
'w-32 rounded-lg border border-border bg-card px-3 py-2 text-sm',
'text-foreground placeholder:text-muted-foreground font-mono',
- 'focus:border-[rgba(249,115,22,0.3)] focus:outline-none focus:ring-1 focus:ring-primary/20'
+ 'focus:border-[rgba(96,165,250,0.3)] focus:outline-none focus:ring-1 focus:ring-primary/20'
)}
/>
diff --git a/frontend/src/pages/admin/SurveyResponsesPage.tsx b/frontend/src/pages/admin/SurveyResponsesPage.tsx
index b4956a41..d2325f7d 100644
--- a/frontend/src/pages/admin/SurveyResponsesPage.tsx
+++ b/frontend/src/pages/admin/SurveyResponsesPage.tsx
@@ -91,7 +91,7 @@ function ExpandedDetail({ response }: { response: SurveyResponseDetail }) {
className="px-6 py-5"
style={{
background: 'rgba(0, 0, 0, 0.15)',
- borderTop: '1px solid rgba(249, 115, 22, 0.1)',
+ borderTop: '1px solid rgba(96, 165, 250, 0.1)',
}}
>
@@ -500,7 +500,7 @@ export default function SurveyResponsesPage() {
{selectedIds.size > 0 && (
{selectedIds.size} selected
diff --git a/frontend/src/styles/landing.css b/frontend/src/styles/landing.css
index fdd83ad5..266f4ca8 100644
--- a/frontend/src/styles/landing.css
+++ b/frontend/src/styles/landing.css
@@ -22,7 +22,7 @@
pointer-events: none;
z-index: 0;
overflow: hidden;
- background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
+ background: radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.12) 0%, transparent 60%);
}
.landing-ambient-glow::before,
@@ -482,7 +482,7 @@
}
.landing-preview-sidebar-item.active {
- background: rgba(249, 115, 22, 0.08);
+ background: rgba(96, 165, 250, 0.08);
color: var(--color-accent-text);
border-left: 3px solid var(--color-accent);
}
@@ -535,7 +535,7 @@
.landing-tree-connector {
width: 2px;
height: 24px;
- background: rgba(249, 115, 22, 0.2);
+ background: rgba(96, 165, 250, 0.2);
}
.landing-tree-branch {
@@ -552,7 +552,7 @@
width: calc(100% - 100px);
transform: translateX(-50%);
height: 2px;
- background: rgba(249, 115, 22, 0.15);
+ background: rgba(96, 165, 250, 0.15);
}
.landing-tree-branch-arm {
@@ -756,7 +756,7 @@
}
.landing-step-card:hover {
- border-color: rgba(249, 115, 22, 0.2);
+ border-color: rgba(96, 165, 250, 0.2);
}
.landing-step-card::before {
@@ -814,9 +814,9 @@
}
.landing-mock-node.start {
- background: rgba(249, 115, 22, 0.15);
+ background: rgba(96, 165, 250, 0.15);
color: var(--color-accent-text);
- border: 1px solid rgba(249, 115, 22, 0.2);
+ border: 1px solid rgba(96, 165, 250, 0.2);
}
.landing-mock-node.step {
@@ -920,7 +920,7 @@
}
.landing-feature-card:hover {
- border-color: rgba(249, 115, 22, 0.2);
+ border-color: rgba(96, 165, 250, 0.2);
transform: translateY(-3px);
}
@@ -928,7 +928,7 @@
width: 40px;
height: 40px;
border-radius: 10px;
- background: rgba(249, 115, 22, 0.08);
+ background: rgba(96, 165, 250, 0.08);
display: flex;
align-items: center;
justify-content: center;
@@ -951,7 +951,7 @@
}
.landing-feature-card.highlight {
- border-color: rgba(249, 115, 22, 0.15);
+ border-color: rgba(96, 165, 250, 0.15);
background: var(--color-bg-card);
grid-column: span 2;
}
@@ -1228,7 +1228,7 @@
.landing-cta-email-input:focus {
border-color: #f97316;
- box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
+ box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}
.landing-cta-fine-print {