/* In NativeScript, the app.css file is where you place CSS rules that you would like to apply to your entire application. Check out http://docs.nativescript.org/ui/styling for a full list of the CSS selectors and properties you can use to style UI components. /* In many cases you may want to use the NativeScript core theme instead of writing your own CSS rules. For a full list of class names in the theme refer to http://docs.nativescript.org/ui/theme. The imported CSS rules must precede all other types of rules. */ @import "@nativescript/theme/css/core.css"; @import "@nativescript/theme/css/default.css"; /* applied when device is in light mode */ .ns-light .bg-primary { background-color: #fdfdfd; } .ns-light .bg-secondary { background-color: #ffffff; } .ns-light.text-primary { color: #444; } .ns-light.text-secondary { color: #777; } /* applied when device is in dark mode */ .ns-dark .bg-primary { background-color: #212121; } .ns-dark .bg-secondary { background-color: #383838; } .ns-dark .text-primary { color: #eee; } .ns-dark .text-secondary { color: #ccc; }