oak-pay-business/es/oak-app-domain/Order/Style.js

50 lines
1.1 KiB
JavaScript

export const style = {
icon: {
startPaying: '',
payAll: '',
payPartially: '',
payNone: '',
timeout: '',
cancel: '',
startRefunding: '',
refundAll: '',
refundNone: '',
refundPartially: '',
send: '',
store: '',
take: '',
receive: '',
settle: '',
turnBack: '',
unship: '',
startTaking: '',
completeTaking: '',
cancelTaking: '',
},
color: {
iState: {
unpaid: '#52BE80',
partiallyPaid: '#5DADE2',
cancelled: '#D6DBDF',
paid: '#2E86C1',
paying: '#D2B4DE',
timeout: '#2C3E50',
refunded: '#BA4A00',
partiallyRefunded: '#EDBB99',
refunding: '#FBEEE6'
},
gState: {
unshipped: '#AF601A',
shipped: '#2874A6',
received: '#1E8449',
staging: '#283747',
taken: '#117A65',
taking: '#FFC107',
},
receivingMethod: {
express: '#5DADE2',
pickup: '#2ECC71',
}
}
};