aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/chatgpt/webview.js
blob: 2ebc1f3063192e887f68731948fa949c586f9c5f (plain) (blame)
1
2
3
4
5
module.exports = Ferdium => {
  Ferdium.handleDarkMode(isEnabled => {
    localStorage.setItem('theme', isEnabled ? 'dark' : 'light' );
  });
};