@@ -60,7 +60,7 @@ const BigIdenticon = ({ name }: { name: string }) => (
60
60
)
61
61
62
62
const SystemIcon = ( ) => (
63
- < div className = { cn ( bigIconBox , 'text-quinary bg-tertiary' ) } >
63
+ < div className = { cn ( bigIconBox , 'text-quaternary bg-tertiary' ) } >
64
64
< Servers16Icon />
65
65
</ div >
66
66
)
@@ -88,8 +88,8 @@ function HomeButton({ level }: { level: 'system' | 'silo' }) {
88
88
< div className = "flex w-full items-center" >
89
89
< div className = "mr-2" > { config . icon } </ div >
90
90
< div className = "min-w-0 flex-1" >
91
- < div className = "text-mono-xs text-quaternary " > { config . heading } </ div >
92
- < div className = "overflow-hidden text-ellipsis whitespace-nowrap text-sans-md text-secondary " >
91
+ < div className = "text-mono-xs text-tertiary " > { config . heading } </ div >
92
+ < div className = "overflow-hidden text-ellipsis whitespace-nowrap text-sans-md text-raise " >
93
93
{ config . label }
94
94
</ div >
95
95
</ div >
@@ -110,8 +110,8 @@ function Breadcrumbs() {
110
110
< Link
111
111
to = { path }
112
112
className = { cn (
113
- 'whitespace-nowrap text-sans-md hover:text-secondary ' ,
114
- i === crumbs . length - 1 ? 'text-secondary ' : 'text-tertiary '
113
+ 'whitespace-nowrap text-sans-md' ,
114
+ i === crumbs . length - 1 ? 'text-raise ' : 'text-secondary hover:text-default '
115
115
) }
116
116
key = { `${ label } |${ path } ` }
117
117
>
@@ -139,8 +139,8 @@ function UserMenu() {
139
139
) }
140
140
aria-label = "User menu"
141
141
>
142
- < Profile16Icon className = "text-quaternary " />
143
- < span className = "normal-case text-sans-md text-secondary " >
142
+ < Profile16Icon className = "text-tertiary " />
143
+ < span className = "normal-case text-sans-md text-default " >
144
144
{ me . displayName || 'User' }
145
145
</ span >
146
146
</ DropdownMenu . Trigger >
@@ -161,15 +161,15 @@ function SiloSystemPicker({ level }: { level: 'silo' | 'system' }) {
161
161
return (
162
162
< DropdownMenu . Root >
163
163
< DropdownMenu . Trigger
164
- className = "flex items-center rounded border px-2 py-1.5 text-sans-md text-secondary border-secondary hover:bg-hover"
164
+ className = "flex items-center rounded border px-2 py-1.5 text-sans-md text-default border-secondary hover:bg-hover"
165
165
aria-label = "Switch between system and silo"
166
166
>
167
- < div className = "flex items-center text-quaternary " >
167
+ < div className = "flex items-center text-tertiary " >
168
168
{ level === 'system' ? < Servers16Icon /> : < Organization16Icon /> }
169
169
</ div >
170
170
< div className = "ml-1.5 mr-3" > { level === 'system' ? 'System' : 'Silo' } </ div >
171
171
{ /* aria-hidden is a tip from the Reach docs */ }
172
- < SelectArrows6Icon className = "text-quinary " aria-hidden />
172
+ < SelectArrows6Icon className = "text-quaternary " aria-hidden />
173
173
</ DropdownMenu . Trigger >
174
174
< DropdownMenu . Content className = "mt-2 max-h-80 overflow-y-auto" anchor = "bottom start" >
175
175
< SystemSiloItem to = { pb . silos ( ) } label = "System" isSelected = { level === 'system' } />
0 commit comments