background: #66bb6a;
(緑色)が設定されています。
.bar { background: #66bb6a; /* スタイル(緑色) */ animation: sample-fill 2s 1s 1 normal; /* 以下は左から none, forwards, backwards, both が入っています */ animation-fill-mode: none/forwards/backwards/both; }
@keyframes sample-fill { from { left: 0; background: #90caf9; } /* 開始時(左・水色) */ to { left: 110px; background: #ec407a; } /* 終了時(右・ピンク) */ }