diff --git a/src/calendar/components/Month.js b/src/calendar/components/Month.js index cf46a4987..7bbdc38cf 100644 --- a/src/calendar/components/Month.js +++ b/src/calendar/components/Month.js @@ -186,7 +186,12 @@ export default createComponent({ } if (this.color) { - if (type === 'start' || type === 'end') { + if ( + type === 'start' || + type === 'end' || + type === 'multiple-selected' || + type === 'multiple-middle' + ) { style.background = this.color; } else if (type === 'middle') { style.color = this.color;