aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/darkmode/custom.ts
blob: f767f5755d1e9315fe3fb2b6b20453220e33e786 (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;
    }
  `,
};