This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This can help to get appropriate github color for language name provided | |
| // It also has functions to return a solid color brush for language name provided. | |
| public static class LanguageColor | |
| { | |
| #region Static Functions | |
| // <summary> | |
| // Returns Appropriate Solid Color Brush after determining hex value from GetHexForLanguage | |
| // and converting it to SolidColorBrush with help of GetSolidColorBrush | |
| // </summary> | |
| public static SolidColorBrush GetAppropriateColorBrush(string languageName) |
NewerOlder