summaryrefslogtreecommitdiffstats
path: root/src/webview/darkmode/custom.js
blob: 4b2b89fb2cbd9347871c096825abd67c604b46c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// CSS for pages that need custom styles to work correctly in darkmode
export default { 
  'web.whatsapp.com': `
    div.landing-window > div.landing-main {
      background-color: #FFFFFF !important;
    }
    div.landing-window > div.landing-main * {
      color: #212121 !important;
    }
  `,
  'web.threema.ch': `
    .scan {
      background-color: #FFF;
    }
    .scan * {
      color: #212121;
    }
    .scan input.md-input {
      color: #212121;
    }
  `
};