Fix tag border color Relations (#3034)

- fix tag theme types
- fix color for tag border
This commit is contained in:
brendanlaschke
2023-12-18 08:44:12 +01:00
committed by GitHub
parent 2507da1b25
commit b36d86e52c
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ const StyledDataType = styled.div<{ value: FieldMetadataType }>`
${({ theme, value }) => ${({ theme, value }) =>
value === FieldMetadataType.Relation value === FieldMetadataType.Relation
? css` ? css`
border-color: ${theme.color.purple20}; border-color: ${theme.tag.background.purple};
color: ${theme.color.purple}; color: ${theme.color.purple};
` `
: ''} : ''}

View File

@ -1,6 +1,6 @@
import { color } from './colors'; import { color } from './colors';
export const tagLight: { [key: string]: { [key: string]: string } } = { export const tagLight = {
text: { text: {
green: color.green60, green: color.green60,
turquoise: color.turquoise60, turquoise: color.turquoise60,