AcManager.Pages.Drive.Srs.StyleProvider.GetCustomStyle C# (CSharp) 메소드

GetCustomStyle() 개인적인 메소드

private GetCustomStyle ( ) : string
리턴 string
            private string GetCustomStyle() {
                var color = AppAppearanceManager.Instance.AccentColor;
                return BinaryResources.SrsStyle
                                      .Replace(@"#E20035", color.ToHexString())
                                      .Replace(@"#CA0030", ColorExtension.FromHsb(color.GetHue(), color.GetSaturation(), color.GetBrightness() * 0.92).ToHexString());
            }