41 lines
362 B
JavaScript
41 lines
362 B
JavaScript
|
|
|
|
export default class filler{
|
|
|
|
layers = 1;
|
|
|
|
height = "-webkit-fill-available";
|
|
|
|
#ifdef MACOS
|
|
|
|
#ifdef DARK
|
|
|
|
background = "#282828";
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
background = "#ffffff";
|
|
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef WINDOWS
|
|
|
|
#ifdef LIGHT
|
|
|
|
color = "black";
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef DARK
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
width = "-webkit-fill-available";
|
|
|
|
} |