redirecter for ao3 that adds opengraph metadata
1const themes = { 2 ao3: { 3 name: 'AO3', 4 background: '#990000', 5 color: '#FFFFFF', 6 descBackground: '#FFFFFF', 7 descColor: '#000000', 8 accent: '#990000' 9 }, 10 softEra: { 11 name: 'Soft Era', 12 background: '#F9F5F5', 13 color: '#C8B3B3', 14 descBackground: '#F9F5F5', 15 descColor: '#414141', 16 accent: '#DB90A7' 17 }, 18 wildCherry: { 19 name: 'Wild Cherry' 20 }, 21 rosePine: { 22 name: 'Rosé Pine', 23 background: '#191724', 24 color: '#e0def4', 25 descBackground: '#1f1d2e', 26 descColor: '#e0def4', 27 accent: '#eb6f92' 28 }, 29 rosePineDawn: { 30 name: 'Rosé Pine Dawn', 31 background: '#faf4ed', 32 color: '#575279', 33 descBackground: '#fffaf3', 34 descColor: '#575279', 35 accent: '#eb6f92' 36 }, 37 rosePineMoon: { 38 name: 'Rosé Pine Moon', 39 background: '#232136', 40 color: '#e0def4', 41 descBackground: '#2a273f', 42 descColor: '#e0def4', 43 accent: '#b4637a' 44 }, 45 solarizedLight: { 46 name: 'Solarized Light' 47 }, 48 solarizedDark: { 49 name: 'Solarized Dark' 50 }, 51 squidgeworld: { 52 name: 'Squidgeworld' 53 }, 54 superlove: { 55 name: 'Superlove' 56 } 57} 58 59export default themes