Fix tag border color Relations (#3034)
- fix tag theme types - fix color for tag border
This commit is contained in:
@ -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};
|
||||||
`
|
`
|
||||||
: ''}
|
: ''}
|
||||||
|
|||||||
@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user