Пример #1
0
    public void ChangeTheme(Button but)
    {
        if (but.tag == "Night")
        {
            TextColor   = Color.white;
            ButtonColor = but.image.color;
        }
        else
        {
            TextColor   = new Color32(50, 50, 50, 255);
            ButtonColor = Color.white;
        }

        BackgroundColor = but.image.color;

        themeCon.ChangeTheme(TextColor, BackgroundColor, ButtonColor);
    }