Is it possible to use CSS variables in Twitter-bootstrap 4 $theme-colors array?-Twitter bootstrap
In bootstrap 4 you can define and/or override default colors using the following array: (as documented here) $theme-colors: ( "primary": #001122, /*override*/ "color-1": red, /*new color*/ "color-2": black, /*new color*/ "color-3": white /*new color*/ ); I want to make custom…