diff options
| -rw-r--r-- | ext/data/schemas/options-schema.json | 4 | ||||
| -rw-r--r-- | ext/welcome.html | 1 | 
2 files changed, 3 insertions, 2 deletions
| diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json index 91e01ace..f4748e69 100644 --- a/ext/data/schemas/options-schema.json +++ b/ext/data/schemas/options-schema.json @@ -226,12 +226,12 @@                                      "popupTheme": {                                          "type": "string",                                          "enum": ["light", "dark", "browser"], -                                        "default": "light" +                                        "default": "browser"                                      },                                      "popupOuterTheme": {                                          "type": "string",                                          "enum": ["light", "dark", "browser", "site"], -                                        "default": "light" +                                        "default": "site"                                      },                                      "customPopupCss": {                                          "type": "string", diff --git a/ext/welcome.html b/ext/welcome.html index e7d0ea5d..0aab51e9 100644 --- a/ext/welcome.html +++ b/ext/welcome.html @@ -134,6 +134,7 @@                  <select data-setting="general.popupTheme" class="short-width">                      <option value="light">Light</option>                      <option value="dark">Dark</option> +                    <option value="browser">Browser</option>                  </select>              </div>          </div></div> |