Write on the margins of the internet. Powered by the AT Protocol.
margin.at
extension
web
atproto
comments
1export const apiUrlItem = storage.defineItem<string>('local:apiUrl', {
2 fallback: 'https://margin.at',
3});
4
5export const overlayEnabledItem = storage.defineItem<boolean>('local:overlayEnabled', {
6 fallback: true,
7});
8
9export const themeItem = storage.defineItem<'light' | 'dark' | 'system'>('local:theme', {
10 fallback: 'system',
11});