@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
17 lines (15 loc) • 445 B
text/typescript
import {type MantineTheme} from '@mantine/core';
export const readOnlyInputStyles = (theme: MantineTheme) => ({
wrapper: {
'--input-bd': 'transparent',
'--input-bg': theme.colors.gray[2],
'--input-color': theme.colors.gray[7],
'--input-placeholder-color': theme.colors.gray[7],
},
label: {
'--input-asterisk-color': theme.colors.red[2],
},
input: {
cursor: 'text',
},
});