unstated-enhancers
Version:
Unstated tools for state management
37 lines (35 loc) • 519 B
text/typescript
const colors = {
updated: {
color: '#2196F3',
text: 'CHANGED:'
},
added: {
color: '#8BC34A',
text: 'ADDED:'
},
deleted: {
color: '#E53935',
text: 'DELETED:'
},
title: {
color: 'inherit',
text: ''
},
prevState: {
color: '#455A64',
text: 'PREV STATE:'
},
action: {
color: '#03A9F4',
text: 'ACTION:'
},
nextState: {
color: '#4CAF50',
text: 'NEXT STATE:'
},
error: {
color: '#F20404',
text: 'ERROR:'
}
}
export default colors