■ ColorConversionExtensions 클래스의 IsDarkForTheEye 확장 메소드를 사용해 사람의 눈을 기준으로 어두운 색상 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using CommunityToolkit.Maui.Core.Extensions; Color sourceColor = Colors.Red; bool isDark = sourceColor.IsDarkForTheEye(); |