about summary refs log tree commit diff stats
path: root/src/assets/javascripts/data.js
blob: bf0666ba2b7c95f0696c55f31732bec7cd13f5b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";

let theme;
function setTheme(val) {
    theme = val;
    browser.storage.sync.set({ theme })
};

export default {
    theme,
    setTheme,
}