vue2-flip-countdown
vue2-flip-countdown copied to clipboard
How can i change colors of the numbers and cards
How can i change colors of the numbers and cards
bump
Sorry for late reply. For now, it's impossible to customize colors of numbers and cards. I hope someone make a PR for this feature, or I'll work on this later. (but not to sure when I can start the work)
Related: https://github.com/philipjkim/vue2-flip-countdown/issues/16#issuecomment-691104075
Hi @johnlandish , @adamsmaka and @philipjkim I made same one for Vue 3.x with many props like flipAnimation,mainColor , labelColor etc. , you can use it. https://github.com/coskuncayemre/vue3-flip-countdown
Hi @johnlandish,
You can still add the css class (.flip-card__*) in your component and change the colors of the number ('color') and cards ('background')
<style lang="scss"> .flip-card__top, .flip-card__bottom, .flip-card__back-bottom, .flip-card__back::before, .flip-card__back::after { color: #3f5086 !important; background: rgba(40, 29, 105, 0.897) !important; } </style>