AcManager.Pages.Drive.Srs.StyleProvider.GetCustomStyle C# (CSharp) Method

GetCustomStyle() private method

private GetCustomStyle ( ) : string
return 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());
            }