I attempted to incorporate new predefined background colors as per the guidelines provided for the bootstrap_package
Everything was successful when adding just one extra color by following the instructions for PageTsConfig and TypoScript constants (the SCSS snippet didn't seem necessary). However, I'm encountering difficulty in making it work with multiple colors. The pageTsConfig section seems to be functioning well (I can see all the new colors as options in the backend editor).
TCEFORM {
tt_content {
background_color_class {
addItems {
red = Red
white = White
hblau = Herth-Blau
}
}
}
}
Unfortunately, implementing changes in the CSS (via the extension's constants) is not yielding results. I tried using this code:
plugin.bootstrap_package.settings.scss {
frame-backgrounds = ( hblau:(background: #0092d0, link-color: #e0efff, link-hover-color: #ffffff),
white:(background: #ffffff, link-color: #e0efff, link-hover-color: #ffffff),
red:(background: #ff0000, link-color: #ffeeee, link-hover-color: #ffffff)
)
}
Does anyone have any suggestions on what might be going wrong here?
Your help would be greatly appreciated.
Warm regards, Chris