diff --git a/app/integrations/page.tsx b/app/integrations/page.tsx index 8582f22..dccc121 100644 --- a/app/integrations/page.tsx +++ b/app/integrations/page.tsx @@ -188,7 +188,7 @@ export default function IntegrationsPage() { onClick={() => handleCategoryClick('all')} className={`px-4 py-1.5 rounded-full text-sm font-medium transition-all ${ activeCategory === 'all' - ? 'bg-brand-orange text-white shadow-sm' + ? 'bg-brand-orange-button text-white shadow-sm' : 'bg-neutral-800 text-neutral-400 hover:bg-neutral-700' }`} > @@ -200,7 +200,7 @@ export default function IntegrationsPage() { onClick={() => handleCategoryClick(cat)} className={`px-4 py-1.5 rounded-full text-sm font-medium transition-all ${ activeCategory === cat - ? 'bg-brand-orange text-white shadow-sm' + ? 'bg-brand-orange-button text-white shadow-sm' : 'bg-neutral-800 text-neutral-400 hover:bg-neutral-700' }`} > @@ -335,7 +335,7 @@ export default function IntegrationsPage() {

Request Integration diff --git a/app/sites/[id]/cdn/page.tsx b/app/sites/[id]/cdn/page.tsx index 25e2e68..7b97e37 100644 --- a/app/sites/[id]/cdn/page.tsx +++ b/app/sites/[id]/cdn/page.tsx @@ -187,7 +187,7 @@ export default function CDNPage() {

diff --git a/components/dashboard/AddFilterDropdown.tsx b/components/dashboard/AddFilterDropdown.tsx index 74c835c..4840d46 100644 --- a/components/dashboard/AddFilterDropdown.tsx +++ b/components/dashboard/AddFilterDropdown.tsx @@ -164,7 +164,7 @@ export default function AddFilterDropdown({ onAdd, suggestions = {}, onFetchSugg onClick={() => setOperator(op)} className={`px-2.5 py-1 text-[11px] font-medium rounded-md transition-colors cursor-pointer ${ operator === op - ? 'bg-brand-orange text-white' + ? 'bg-brand-orange-button text-white' : 'bg-neutral-800 text-neutral-400 hover:bg-neutral-700' }`} > @@ -219,7 +219,7 @@ export default function AddFilterDropdown({ onAdd, suggestions = {}, onFetchSugg
diff --git a/components/dashboard/Chart.tsx b/components/dashboard/Chart.tsx index 700caa6..0a11cb9 100644 --- a/components/dashboard/Chart.tsx +++ b/components/dashboard/Chart.tsx @@ -674,7 +674,7 @@ export default function Chart({ type="button" disabled={!annotationForm.text.trim() || !annotationForm.date || saving} onClick={handleSaveAnnotation} - className="px-3 py-1.5 text-xs font-medium text-white bg-brand-orange hover:bg-brand-orange/90 rounded-lg disabled:opacity-50 cursor-pointer" + className="px-3 py-1.5 text-xs font-medium text-white bg-brand-orange-button hover:bg-brand-orange-button-hover rounded-lg disabled:opacity-50 cursor-pointer" > {saving ? 'Saving...' : annotationForm.editingId ? 'Save' : 'Add'} diff --git a/components/dashboard/EventProperties.tsx b/components/dashboard/EventProperties.tsx index 3d8033e..1a74f86 100644 --- a/components/dashboard/EventProperties.tsx +++ b/components/dashboard/EventProperties.tsx @@ -70,7 +70,7 @@ export default function EventProperties({ siteId, eventName, dateRange, onClose onClick={() => setSelectedKey(k.key)} className={`px-3 py-1 text-xs font-medium rounded-full transition-colors cursor-pointer ${ selectedKey === k.key - ? 'bg-brand-orange text-white' + ? 'bg-brand-orange-button text-white' : 'bg-neutral-800 text-neutral-400 hover:bg-neutral-700' }`} > diff --git a/components/dashboard/FilterBar.tsx b/components/dashboard/FilterBar.tsx index 697396d..fd408ee 100644 --- a/components/dashboard/FilterBar.tsx +++ b/components/dashboard/FilterBar.tsx @@ -17,7 +17,7 @@ export default function FilterBar({ filters, onRemove, onClear }: FilterBarProps