summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/extensions/shared_vars.html
blob: 86b2870213f7b94297406a361b19670fa3151dbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<link rel="import" href="chrome://resources/html/polymer.html">

<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">

<custom-style>
<style>
  html {
    /* Note: error-color is used for many warnings. There's also an orange-y
     * warning color in 1 place. */
    --error-color: var(--google-red-700);
    --separator-gap: 9px;
  }

  @media (prefers-color-scheme: dark) {
    html {
      --error-color: var(--google-red-refresh-300);
    }
  }
</style>
</custom-style>