11import {
22 BellAlertIcon ,
33 ChartBarIcon ,
4- Cog8ToothIcon ,
54 CreditCardIcon ,
65 LockClosedIcon ,
76 ShieldCheckIcon ,
8- UserGroupIcon ,
97} from "@heroicons/react/20/solid" ;
108import { ArrowLeftIcon } from "@heroicons/react/24/solid" ;
11- import { SlackIcon } from "@trigger.dev/companyicons" ;
9+ import { SlackIcon } from "~/assets/icons/SlackIcon" ;
10+ import { SlidersIcon } from "~/assets/icons/SlidersIcon" ;
11+ import { UserGroupIcon } from "~/assets/icons/UserGroupIcon" ;
1212import { VercelLogo } from "~/components/integrations/VercelLogo" ;
1313import { useFeatureFlags } from "~/hooks/useFeatureFlags" ;
1414import { useFeatures } from "~/hooks/useFeatures" ;
@@ -86,16 +86,16 @@ export function OrganizationSettingsSideMenu({
8686 < SideMenuItem
8787 name = "Usage"
8888 icon = { ChartBarIcon }
89- activeIconColor = "text-indigo-500 "
90- inactiveIconColor = "text-indigo-500 "
89+ activeIconColor = "text-text-bright "
90+ inactiveIconColor = "text-text-dimmed "
9191 to = { v3UsagePath ( organization ) }
9292 data-action = "usage"
9393 />
9494 < SideMenuItem
9595 name = "Billing"
9696 icon = { CreditCardIcon }
97- activeIconColor = "text-emerald-500 "
98- inactiveIconColor = "text-emerald-500 "
97+ activeIconColor = "text-text-bright "
98+ inactiveIconColor = "text-text-dimmed "
9999 to = { v3BillingPath ( organization ) }
100100 data-action = "billing"
101101 badge = {
@@ -107,8 +107,8 @@ export function OrganizationSettingsSideMenu({
107107 < SideMenuItem
108108 name = "Billing alerts"
109109 icon = { BellAlertIcon }
110- activeIconColor = "text-rose-500 "
111- inactiveIconColor = "text-rose-500 "
110+ activeIconColor = "text-text-bright "
111+ inactiveIconColor = "text-text-dimmed "
112112 to = { v3BillingAlertsPath ( organization ) }
113113 data-action = "billing-alerts"
114114 />
@@ -118,35 +118,35 @@ export function OrganizationSettingsSideMenu({
118118 < SideMenuItem
119119 name = "Private Connections"
120120 icon = { LockClosedIcon }
121- activeIconColor = "text-purple-500 "
122- inactiveIconColor = "text-purple-500 "
121+ activeIconColor = "text-text-bright "
122+ inactiveIconColor = "text-text-dimmed "
123123 to = { v3PrivateConnectionsPath ( organization ) }
124124 data-action = "private-connections"
125125 />
126126 ) }
127127 < SideMenuItem
128128 name = "Team"
129129 icon = { UserGroupIcon }
130- activeIconColor = "text-amber-500 "
131- inactiveIconColor = "text-amber-500 "
130+ activeIconColor = "text-text-bright "
131+ inactiveIconColor = "text-text-dimmed "
132132 to = { organizationTeamPath ( organization ) }
133133 data-action = "team"
134134 />
135135 { isUsingPlugin && (
136136 < SideMenuItem
137137 name = "Roles"
138138 icon = { ShieldCheckIcon }
139- activeIconColor = "text-sky-500 "
140- inactiveIconColor = "text-sky-500 "
139+ activeIconColor = "text-text-bright "
140+ inactiveIconColor = "text-text-dimmed "
141141 to = { organizationRolesPath ( organization ) }
142142 data-action = "roles"
143143 />
144144 ) }
145145 < SideMenuItem
146146 name = "Settings"
147- icon = { Cog8ToothIcon }
148- activeIconColor = "text-orgSettings "
149- inactiveIconColor = "text-orgSettings "
147+ icon = { SlidersIcon }
148+ activeIconColor = "text-text-bright "
149+ inactiveIconColor = "text-text-dimmed "
150150 to = { organizationSettingsPath ( organization ) }
151151 data-action = "settings"
152152 />
@@ -158,17 +158,18 @@ export function OrganizationSettingsSideMenu({
158158 < SideMenuItem
159159 name = "Vercel"
160160 icon = { VercelLogo }
161- activeIconColor = "text-white "
162- inactiveIconColor = "text-white "
163- iconClassName = "size-4 ml-0.5 "
161+ activeIconColor = "text-text-bright "
162+ inactiveIconColor = "text-text-dimmed "
163+ iconClassName = "size-4 ml-[0.15rem] "
164164 to = { organizationVercelIntegrationPath ( organization ) }
165165 data-action = "integrations"
166166 />
167167 < SideMenuItem
168168 name = "Slack"
169169 icon = { SlackIcon }
170- activeIconColor = "text-white"
171- inactiveIconColor = "text-white"
170+ activeIconColor = "text-text-bright"
171+ inactiveIconColor = "text-text-dimmed"
172+ iconClassName = "size-4 ml-0.5"
172173 to = { organizationSlackIntegrationPath ( organization ) }
173174 data-action = "integrations"
174175 />
0 commit comments