cadencii.RendererKindUtil.getPianorollDarkBackground C# (CSharp) Method

getPianorollDarkBackground() public static method

ピアノロールの黒鍵部分の背景色を取得する
public static getPianorollDarkBackground ( this kind ) : Color
kind this 歌声合成システムの種類
return Color
        public static Color getPianorollDarkBackground( this RendererKind kind )
        {
            Config config;
            if ( configs_.TryGetValue( kind, out config ) ) {
                return config.dark_background_;
            }
            return Config.empty.dark_background_;
        }