Guest User

Untitled

a guest
Mar 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // get colors from theme
  2. if (globalConfigurationThemes.filter((key) => key.match('colors'))) {
  3. for (let i = 0; bsColors.length > i; i++) {
  4. for (const key in themeToJs) {
  5. if (key === '$' + bsColors[i]) {
  6. Object.assign(filteredTheme, {[key]: themeToJs[key]});
  7. }
  8. }
  9. }
  10. }
Add Comment
Please, Sign In to add comment