I'm currently working on a project that involves VueJS and Bootstrap. To enhance user experience, I've incorporated a context menu using the npm package called vue-context Vue Context Menu
When a user hovers over an item on the context menu, the option stands out with a blue color like this:
https://i.sstatic.net/QymGA.png
The code snippet for the context menu is as follows:
<vue-context ref="menu">
<ul style="font-family: 'Source Sans Pro'; font-size: 15px; font-weight: normal; font-style: normal; text-decoration: none; text-align: left; ">
<li class="context-menu-item" @click="onClick($event.target.innerText)"><i class='fa fa-file' id="context-menu-icon"></i><span class="context-menu-span">Preview</span></li>
<!-- More context menu items -->
</ul>
</vue-context>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
I am looking to customize the hover effect by changing the color to something different. Any suggestions or help would be greatly appreciated!