N°8274 - Move body colors from legacy file to current theme files

This commit is contained in:
Stephen Abello
2025-04-11 10:08:17 +02:00
parent 8f6f243716
commit a5c14c3a48
2 changed files with 6 additions and 5 deletions

View File

@@ -36,10 +36,6 @@
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
body {
color: $text-color;
background-color: $body-bg;
}
input,
button,
select,

View File

@@ -5,4 +5,9 @@
/* SCSS variables (can be overloaded) */
$ipb-body-text-color: $ipb-color-grey-900 !default;
$ipb-body-background-color: $ipb-color-white-200 !default;
$ipb-body-background-color: $ipb-color-white-200 !default;
body {
color: $ipb-body-text-color;
background-color: $ipb-body-background-color;
}