19 lines
487 B
CSS
19 lines
487 B
CSS
/* For information on how to create your own theme, please refer to:
|
|
http://ionicframework.com/docs/theming/ */
|
|
|
|
:root {
|
|
--ion-font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
|
|
"Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
--ui-input-background: #efefef;
|
|
--ui-input-color: #222222;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--ui-input-background: #1e1e1e;
|
|
--ui-input-color: #ffffff;
|
|
}
|
|
}
|