https://i.sstatic.net/axVNu.png
Using nuxt and bootstrap, I've noticed that the default sorting arrows in the table are too dark for my background. Is there a way to change the color of these sorting arrows?
<b-table
show-empty
small
striped
hover
stacked="md"
:items="rankingList"
:fields="fields"
:sort-by.sync="sortBy"
:sort-desc.sync="sortDesc"
:sort-direction="sortDirection"
>
package.json
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^3.0.0-0",
"bootstrap-vue": "^2.15.0",
"chart.js": "^2.9.4",
"chartjs-plugin-zoom": "^0.7.7",
"node-sass": "^4.11.0",
"nuxt": "^2.0.0",
"sass-loader": "^7.1.0",
"vue-chartjs": "^3.5.1",
"vue-template-compiler": "^2.6.11",
"vue2-transitions": "^0.3.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"vue-cli-plugin-i18n": "^0.5.1"
}