@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
28 lines (27 loc) • 714 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "readOnlyInputStyles", {
enumerable: true,
get: function() {
return readOnlyInputStyles;
}
});
var readOnlyInputStyles = function(theme) {
return {
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'
}
};
};
//# sourceMappingURL=ReadOnlyInputStyles.js.map