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: '#FFFFFF', 9 accent2: '#990000' 10 }, 11 softEra: { 12 name: 'Soft Era', 13 background: '#F9F5F5', 14 color: '#C8B3B3', 15 descBackground: '#F9F5F5', 16 descColor: '#414141', 17 accent: '#DB90A7', 18 accent2: '#EEAABE' 19 }, 20 wildCherry: { 21 name: 'Wild Cherry', 22 background: '#2B1F32', 23 color: '#FFFFFF', 24 descBackground: '#FFFFFF', 25 descColor: '#2B1F32', 26 accent: '#E15D97', 27 accent2: '#0AACC5' 28 }, 29 rosePine: { 30 name: 'Rosé Pine', 31 background: '#191724', 32 color: '#e0def4', 33 descBackground: '#1f1d2e', 34 descColor: '#e0def4', 35 accent: '#eb6f92', 36 accent2: '#31748f' 37 }, 38 rosePineDawn: { 39 name: 'Rosé Pine Dawn', 40 background: '#faf4ed', 41 color: '#575279', 42 descBackground: '#fffaf3', 43 descColor: '#575279', 44 accent: '#eb6f92', 45 accent2: '#286983' 46 }, 47 rosePineMoon: { 48 name: 'Rosé Pine Moon', 49 background: '#232136', 50 color: '#e0def4', 51 descBackground: '#2a273f', 52 descColor: '#e0def4', 53 accent: '#b4637a', 54 accent2: '#3e8fb0' 55 }, 56 solarizedLight: { 57 name: 'Solarized Light', 58 background: '#fdf6e3', 59 color: '#b58900', 60 descBackground: '#eee8d5', 61 descColor: '#002b36', 62 accent: '#d33682', 63 accent2: '#2aa198' 64 }, 65 solarizedDark: { 66 name: 'Solarized Dark', 67 background: '#002b36', 68 color: '#b58900', 69 descBackground: '#073642', 70 descColor: '#fdf6e3', 71 accent: '#d33682', 72 accent2: '#2aa198' 73 }, 74 squidgeworld: { 75 name: 'Squidgeworld', 76 background: '#b8860b', 77 color: '#f5f5dc', 78 descBackground: '#f5f5dc', 79 color: '#2a2a2a', 80 accent: '#fece3f', 81 accent2: '#818D4C' 82 }, 83 superlove: { 84 name: 'Superlove', 85 background: '#df6191', 86 color: '#ffffff', 87 descBackground: '#FFFFFF', 88 color: '#2a2a2a', 89 accent: '#F9E4E6', 90 accent2: '#a33961' 91 } 92} 93 94export default themes