123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace InfoTrack
- {
- class Colors
- {
- // Темный
- static public int nonActiveBtn_r = 33;
- static public int nonActiveBtn_g = 30;
- static public int nonActiveBtn_b = 33;
- // Белый
- static public int nonActiveBtnBorder_r = 240;
- static public int nonActiveBtnBorder_g = 241;
- static public int nonActiveBtnBorder_b = 240;
- // Зеленый
- static public int ActiveBtn_r = 126;
- static public int ActiveBtn_g = 47;
- static public int ActiveBtn_b = 236;
-
- }
- }
|