summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color-adjust/rendering/dark-color-scheme/support/prefers-color-scheme.svg
blob: 3afcac70fe9b561280f32d53420404a3cf23e1cf (plain)
1
2
3
4
5
6
7
8
9
10
<svg xmlns="http://www.w3.org/2000/svg" width='100px' height='100px'>
  <style>
    @media (prefers-color-scheme: dark) {
      rect {
        fill: green;
      }
    }
  </style>
  <rect fill='blue' width='100px' height='100px' />
</svg>