pl-fe: Remove confusingly named accent-blue color, lighten links in dark/black mode
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
@ -194,12 +194,6 @@ const ThemeEditorPage: React.FC = () => {
|
||||
onChange={updateColor('greentext')}
|
||||
/>
|
||||
|
||||
<ColorListItem
|
||||
label={intl.formatMessage(messages.colorAccentBlue)}
|
||||
value={colors['accent-blue']}
|
||||
onChange={updateColor('accent-blue')}
|
||||
/>
|
||||
|
||||
<ColorListItem
|
||||
label={intl.formatMessage(messages.colorGradientStart)}
|
||||
value={colors['gradient-start']}
|
||||
|
||||
@ -79,7 +79,7 @@ const EventInformationPage: React.FC = () => {
|
||||
text.push(
|
||||
<React.Fragment key='event-map'>
|
||||
<br />
|
||||
<a href='#' className='text-primary-600 hover:underline dark:text-accent-blue' onClick={handleShowMap}>
|
||||
<a href='#' className='text-primary-600 hover:underline dark:text-primary-400' onClick={handleShowMap}>
|
||||
<FormattedMessage id='event.show_on_map' defaultMessage='Show on map' />
|
||||
</a>
|
||||
</React.Fragment>,
|
||||
@ -156,7 +156,7 @@ const EventInformationPage: React.FC = () => {
|
||||
{status.event.links.map(link => (
|
||||
<HStack space={2} alignItems='center'>
|
||||
<Icon src={require('@phosphor-icons/core/regular/link-simple.svg')} />
|
||||
<a href={link.remote_url || link.url} className='text-primary-600 hover:underline dark:text-accent-blue' target='_blank'>
|
||||
<a href={link.remote_url || link.url} className='text-primary-600 hover:underline dark:text-primary-400' target='_blank'>
|
||||
{(link.remote_url || link.url).replace(/^https?:\/\//, '')}
|
||||
</a>
|
||||
</HStack>
|
||||
|
||||
Reference in New Issue
Block a user