15 lines
308 B
CSS
15 lines
308 B
CSS
/* For information on how to create your own theme, please refer to:
|
|
http://ionicframework.com/docs/theming/ */
|
|
|
|
:root {
|
|
--ui-input-background: #ffffff;
|
|
--ui-input-color: #222222;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--ui-input-background: #1e1e1e;
|
|
--ui-input-color: #ffffff;
|
|
}
|
|
}
|