X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyCell.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fassets%2Fcss%2Ftheme.css;h=a164cb051aff8be696b38ad42268f3d0cd4e44e9;hp=2ccd34cc4937a58558aa02ad3cfe0a2a336a9494;hb=8484f5cbc7f74e008624d0cd13af4a6f964ee516;hpb=578979a47d905469cfc5c7cdc748fe9b539437e2 diff --git a/app/src/main/assets/css/theme.css b/app/src/main/assets/css/theme.css index 2ccd34c..a164cb0 100644 --- a/app/src/main/assets/css/theme.css +++ b/app/src/main/assets/css/theme.css @@ -25,6 +25,7 @@ } } + /* Hyperlinks. */ a { color: #1976D2; /* Blue 700 */ @@ -47,4 +48,51 @@ h3 { h3 { color: #8AB4F8; /* Violet 500 */ } +} + + +/* Red bold text */ +strong.red { + color: #B71C1C; /* Red 900. */ +} + +@media (prefers-color-scheme: dark) { + strong.red { + color: #FC684E; /* Salmon. */ + } +} + +/* Blue bold text */ +strong.blue { + color: #1565C0; /* Blue 800. */ +} + + +/* List items. */ +item { + color: #1565C0; /* Blue 800. */ + font-weight: bold; +} + + +/* Left aligned images do not allow the icon to be themed. */ +img.left { + float: left; + height: 32; + width: 32; +} + + +/* SVG icons. */ +svg.icon { + vertical-align: middle; + height: 32; + width: 32; + fill: #000000; /* Black */ +} + +@media (prefers-color-scheme: dark) { + svg.icon { + fill: #FFFFFF; /* White */ + } } \ No newline at end of file