Skip to content

Commit 4669bc3

Browse files
committed
Fix a bug where OudsColoredBox content color is not correct when using OudsThemeTweak
1 parent e8d86fc commit 4669bc3

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

core/src/main/java/com/orange/ouds/core/component/OudsColoredBox.kt

+8-4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import com.orange.ouds.core.theme.LocalColoredBox
3030
import com.orange.ouds.core.theme.LocalUseMonoComponents
3131
import com.orange.ouds.core.theme.OudsTheme
3232
import com.orange.ouds.core.theme.OudsThemeTweak
33+
import com.orange.ouds.core.theme.isOudsInDarkTheme
3334
import com.orange.ouds.core.theme.value
3435
import com.orange.ouds.core.utilities.OudsPreview
3536
import com.orange.ouds.foundation.utilities.EnumPreviewParameterProvider
@@ -177,13 +178,13 @@ private fun tweak(color: OudsColoredBox.Color): OudsTheme.Tweak {
177178
OudsColoredBox.Color.StatusPositiveEmphasized,
178179
OudsColoredBox.Color.StatusWarningEmphasized -> OudsTheme.Tweak.ForceLight
179180
OudsColoredBox.Color.StatusNegativeEmphasized,
180-
OudsColoredBox.Color.StatusNeutralEmphasized -> if (isSystemInDarkTheme()) OudsTheme.Tweak.ForceLight else OudsTheme.Tweak.ForceDark
181+
OudsColoredBox.Color.StatusNeutralEmphasized -> if (isOudsInDarkTheme()) OudsTheme.Tweak.ForceLight else OudsTheme.Tweak.ForceDark
181182
OudsColoredBox.Color.StatusAccentMuted,
182183
OudsColoredBox.Color.StatusInfoMuted,
183184
OudsColoredBox.Color.StatusNegativeMuted,
184185
OudsColoredBox.Color.StatusPositiveMuted,
185186
OudsColoredBox.Color.StatusNeutralMuted,
186-
OudsColoredBox.Color.StatusWarningMuted -> if (isSystemInDarkTheme()) OudsTheme.Tweak.ForceDark else OudsTheme.Tweak.ForceLight
187+
OudsColoredBox.Color.StatusWarningMuted -> if (isOudsInDarkTheme()) OudsTheme.Tweak.ForceDark else OudsTheme.Tweak.ForceLight
187188
}
188189
}
189190

@@ -208,11 +209,14 @@ internal fun PreviewOudsColoredBox(
208209
text = parameter.name,
209210
color = OudsTheme.colorScheme.content.default
210211
)
211-
OudsButton(text = "OudsButton", onClick = {})
212+
OudsButton(
213+
text = "Button",
214+
onClick = {}
215+
)
212216
OudsLink(
213217
text = "Link",
214218
arrow = OudsLink.Arrow.Next,
215-
onClick = { },
219+
onClick = {},
216220
)
217221
}
218222
}

core/src/main/java/com/orange/ouds/core/theme/OudsTheme.kt

+14
Original file line numberDiff line numberDiff line change
@@ -175,3 +175,17 @@ fun OudsThemeTweak(tweak: OudsTheme.Tweak, content: @Composable () -> Unit) {
175175
)
176176
}
177177
}
178+
179+
/**
180+
* This function is equivalent to [isSystemInDarkTheme] except it takes the OUDS theme setting into account instead of the system one.
181+
*
182+
* The OUDS theme can be inverted or forced to light or dark when calling [OudsThemeTweak] and the value returned by this method reflects that kind of change.
183+
* If there is no call to [OudsThemeTweak] anywhere in the layout hierarchy, then this function returns the same value as [isSystemInDarkTheme].
184+
*
185+
* @return `true` if OUDS is considered to be in 'dark theme'.
186+
*/
187+
@Composable
188+
@ReadOnlyComposable
189+
fun isOudsInDarkTheme(): Boolean {
190+
return LocalDarkThemeEnabled.current
191+
}

0 commit comments

Comments
 (0)