22 lines
629 B
C++
22 lines
629 B
C++
class CfgPhone {
|
|
class themes {
|
|
class bg_dark01 {
|
|
themeName = "Dark"; // Name of theme
|
|
themeBackground = "\@forge\userconfig\backgrounds\bgdark_01.paa"; // Must be file type: PAA and size: 512x1024
|
|
};
|
|
class bg_dark02 {
|
|
themeName = "Alt Dark";
|
|
themeBackground = "\@forge\userconfig\backgrounds\bgdark_02.paa";
|
|
};
|
|
class bg_light01 {
|
|
themeName = "Light";
|
|
themeBackground = "\@forge\userconfig\backgrounds\bglight_01.paa";
|
|
};
|
|
class bg_light02 {
|
|
themeName = "Alt Light";
|
|
themeBackground = "\@forge\userconfig\backgrounds\bglight_02.paa";
|
|
};
|
|
};
|
|
class notifications {};
|
|
class ringtones {};
|
|
}; |