mirror of https://github.com/vector-im/riot-web
add 15pct value of accent color for FormButton backgrounds
so the button in the toasts has the correct background colorpull/21833/head
parent
b3f19086f2
commit
2f68f608c5
|
@ -17,6 +17,7 @@ limitations under the License.
|
|||
//
|
||||
// --accent-color
|
||||
$accent-color: var(--accent-color);
|
||||
$accent-bg-color: var(--accent-color-15pct);
|
||||
$button-bg-color: var(--accent-color);
|
||||
$button-link-fg-color: var(--accent-color);
|
||||
$button-primary-bg-color: var(--accent-color);
|
||||
|
|
|
@ -148,6 +148,7 @@ function setCustomThemeVars(customTheme) {
|
|||
style.setProperty(`--${name}`, hexColor);
|
||||
// uses #rrggbbaa to define the color with alpha values at 0% and 50%
|
||||
style.setProperty(`--${name}-0pct`, hexColor + "00");
|
||||
style.setProperty(`--${name}-15pct`, hexColor + "26");
|
||||
style.setProperty(`--${name}-50pct`, hexColor + "7F");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue